better error message when variables are missing from env #3474
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: Check if .pyi needs updating | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| check-pyi-diff: | |
| name: Check if .pyi file differs from generated one | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: prefix-dev/setup-pixi@v0.10.0 | |
| with: | |
| pixi-version: v0.68.0 | |
| frozen: true | |
| - name: Check stub file for `_data_ops.py` is up-to-date | |
| run: pixi run -e check-pyi-diff check |