Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- {python: '3.14t'}
- {name: Windows, python: '3.14', os: windows-latest}
- {name: Mac, python: '3.14', os: macos-latest}
- {python: '3.13'}
- {python: '3.13', coverage: true}
- {python: '3.12'}
- {python: '3.11'}
- {python: '3.10'}
Expand All @@ -39,9 +39,14 @@
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python }}
- run: uv run --locked tox run
- run: uv run --locked tox run ${{ matrix.coverage && '-- --cov --cov-report=xml' || '' }}
env:
TOX_ENV: ${{ matrix.tox || format('py{0}', matrix.python) }}
- uses: qltysh/qlty-action/coverage@v2

Check failure on line 45 in .github/workflows/tests.yaml

View workflow job for this annotation

GitHub Actions / zizmor

unpinned-uses

tests.yaml:45: unpinned action reference: action is not pinned to a hash (required by blanket policy)
if: matrix.coverage
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}

Check warning on line 48 in .github/workflows/tests.yaml

View workflow job for this annotation

GitHub Actions / zizmor

secrets-outside-env

tests.yaml:48: secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment
files: coverage.xml
typing:
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ tests = [
"asgiref",
"greenlet",
"pytest",
"pytest-cov",
"python-dotenv",
]
typing = [
Expand Down
Loading
Loading