We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75769ca commit ec2f004Copy full SHA for ec2f004
.github/workflows/test.yml
@@ -22,13 +22,14 @@ jobs:
22
steps:
23
- uses: actions/checkout@v4
24
- uses: actions/setup-python@v5
25
+ id: python
26
with:
27
python-version: "3.x"
28
- uses: pre-commit/action@v3.0.1
29
- name: Check manifest
- run: pipx run nox -s check_manifest
30
+ run: pipx run --python "${{ steps.python.outputs.python-path }}" nox -s check_manifest
31
- name: PyLint checks
- run: pipx run nox -s pylint -- --output-format=github
32
+ run: pipx run --python "${{ steps.python.outputs.python-path }}" nox -s pylint -- --output-format=github
33
34
test:
35
name: Test on ${{ matrix.os }} (${{ matrix.python_version }})
0 commit comments