File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 run : ruff check .
2525 - name : Test
2626 run : pytest
27+
28+ keras-integration :
29+ runs-on : ubuntu-latest
30+ steps :
31+ - uses : actions/checkout@v4
32+ - uses : actions/setup-python@v5
33+ with :
34+ python-version : " 3.12"
35+ - name : Install
36+ run : |
37+ python -m pip install --upgrade pip
38+ pip install -e ".[dev,keras]"
39+ pip install tensorflow
40+ - name : Keras integration tests
41+ run : pytest tests/integration/test_keras_optimizer.py -q
42+ - name : Keras example smoke test
43+ run : python examples/keras_manual_apply.py
44+
45+ package-build :
46+ runs-on : ubuntu-latest
47+ steps :
48+ - uses : actions/checkout@v4
49+ - uses : actions/setup-python@v5
50+ with :
51+ python-version : " 3.12"
52+ - name : Build distributions
53+ run : |
54+ python -m pip install --upgrade pip
55+ pip install build
56+ python -m build
57+ - name : Smoke install wheel
58+ run : |
59+ python -m venv /tmp/neat-wheel-smoke
60+ /tmp/neat-wheel-smoke/bin/pip install dist/*.whl
61+ /tmp/neat-wheel-smoke/bin/python scripts/smoke_install.py
Original file line number Diff line number Diff line change 22.pytest_cache /
33.ruff_cache /
44.venv /
5+ .venv312 /
56build /
67dist /
78* .egg-info /
You can’t perform that action at this time.
0 commit comments