Reorder README badges and add PyPI classifiers and project URLs #34
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 | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Install uv with cache | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.6.2" | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Install nox | |
| uses: wntrblm/nox@2026.04.10 | |
| - run: nox |