Fix scoreboard CI: onnx-tf Python 3.8 build + resilient deploy #111
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Smoke Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| python-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - run: pip install --upgrade -r requirements_web.txt | |
| - run: python -m compileall backends test website-generator | |
| - run: python -c "import json; from pathlib import Path; config = json.loads(Path('setup/config.json').read_text()); assert 'stable' in config and 'development' in config and 'deploy_paths' in config" |