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 d9507bd commit e8ae843Copy full SHA for e8ae843
.github/workflows/_test.yml
@@ -27,15 +27,16 @@ jobs:
27
run: cargo test --verbose
28
29
- uses: actions/setup-python@v5
30
+ id: setup_python
31
with:
32
python-version: ${{ matrix.python-version }}
33
cache: 'pip'
34
- uses: actions/cache@v4
35
36
path: .venv
- key: ${{ runner.os }}-pythonenv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
37
+ key: ${{ runner.os }}-pyenv-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('pyproject.toml') }}
38
restore-keys: |
- ${{ runner.os }}-pythonenv-${{ matrix.python-version }}-
39
+ ${{ runner.os }}-pyenv-${{ steps.setup_python.outputs.python-version }}-
40
- name: Setup venv
41
run: |
42
python -m venv .venv
0 commit comments