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 5dbe450 commit e15e969Copy full SHA for e15e969
.github/workflows/test.yml
@@ -26,6 +26,7 @@ jobs:
26
steps:
27
- uses: actions/checkout@v5
28
- uses: actions/setup-python@v6
29
+ id: setup-python
30
with:
31
python-version: ${{ matrix.python_version }}
32
allow-prereleases: true
@@ -37,4 +38,4 @@ jobs:
37
38
sudo apt-get install -y gdb lcov
39
- name: Tests PyTest
40
run: |
- pipx run nox --forcecolor -s test
41
+ pipx run --python '${{ steps.setup-python.outputs.python-path }}' nox --forcecolor -s test
0 commit comments