chore(deps-dev): update pytest requirement from >=7.0 to >=9.0.3 in the dev-tools group #30
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
| # Fail fast when release metadata drifts (see tools/verify_release_versions.py). | |
| name: Version consistency | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Verify release version alignment | |
| run: python tools/verify_release_versions.py |