Bump the production-dependencies group across 27 directories with 25 updates #406
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: pythonbible | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Setup NOX | |
| uses: wntrblm/nox@2025.11.12 | |
| with: | |
| python-versions: "3.10, 3.11, 3.12, 3.13, 3.14" | |
| - name: Test with NOX | |
| run: | | |
| nox --session tests |