Smoke tests #36
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: | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| jobs: | |
| publish: | |
| name: Weekly smoke tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pylan-lib | |
| curl -O https://raw.githubusercontent.com/TimoKats/pylan/refs/heads/main/misc/smoke_test.py | |
| - name: Run tests | |
| run: | | |
| python smoke_test.py |