Nightly Check #45
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
| # Nightly Check - install dependencies and run tests after pixi update-lock | |
| name: Nightly Check | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Runs every day at midnight UTC | |
| workflow_dispatch: | |
| jobs: | |
| nightly-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Pixi | |
| uses: ./.github/actions/setup-pixi | |
| - name: Update lock file | |
| run: pixi run update-lock | |
| - name: Build package | |
| run: pixi run build | |
| - name: Run tox tests | |
| run: pixi run tox |