CI: add dev-only Windows smoke workflow #2
Workflow file for this run
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: Windows CI (experimental) | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| windows-smoke: | |
| runs-on: windows-latest | |
| continue-on-error: true #this is a smoke test (experimental); it won't block merges | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| cache-dependency-path: | | |
| packaging/nominatim-db/pyproject.toml | |
| packaging/nominatim-api/pyproject.toml | |
| - name: Install latest flake8 | |
| run: python -m pip install -U pip flake8 | |
| - name: Python linting | |
| run: python -m flake8 src test/python test/bdd | |
| - name: Compile Python sources (smoke) | |
| run: python -m compileall src/nominatim_db src/nominatim_api nominatim-cli.py |