File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -28,20 +28,17 @@ jobs:
2828 - name : Install uv
2929 uses : astral-sh/setup-uv@v3
3030
31- - name : Install Python
32- run : uv python install ${{ matrix.python-version }}
33-
3431 - name : " Lint"
3532 run : |
36- uv run --all-extras pre-commit run --all-files --hook-stage commit --verbose
37- uv run --all-extras pre-commit run --all-files --hook-stage push --verbose
38- uv run --all-extras pre-commit run --all-files --hook-stage manual --verbose
33+ uv run --all-extras --python=${{ matrix.python-version }} pre-commit run --all-files --hook-stage commit --verbose
34+ uv run --all-extras --python=${{ matrix.python-version }} pre-commit run --all-files --hook-stage push --verbose
35+ uv run --all-extras --python=${{ matrix.python-version }} pre-commit run --all-files --hook-stage manual --verbose
3936
4037 - name : " Run tests"
4138 run : |
4239 # We run tests against "." and not the tests directory as we test the README
4340 # and documentation.
44- uv run --all-extras pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests/ . --cov-report=xml
41+ uv run --all-extras --python=${{ matrix.python-version }} pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests/ . --cov-report=xml
4542
4643 - name : " Upload coverage to Codecov"
4744 uses : " codecov/codecov-action@v4"
Original file line number Diff line number Diff line change 3434 - name : Install uv
3535 uses : astral-sh/setup-uv@v3
3636
37- - name : Install Python
38- run : uv python install ${{ matrix.python-version }}
39-
4037 - name : " Calver calculate version"
4138 uses : StephaneBour/actions-calver@master
4239 id : calver
You can’t perform that action at this time.
0 commit comments