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 09179af commit eceb095Copy full SHA for eceb095
.github/workflows/check_nitypes.yml
@@ -20,6 +20,13 @@ jobs:
20
id: setup-python
21
with:
22
python-version: ${{ env.PYTHON_VERSION }}
23
+ - name: Cache pipx
24
+ uses: actions/cache@v4
25
+ with:
26
+ path: |
27
+ ${{ env.PIPX_HOME }}
28
+ ${{ env.PIPX_BIN_DIR }}
29
+ key: pipx-${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-poetry${{ env.POETRY_VERSION }}
30
- name: Set up Poetry
31
run: pipx install poetry==${{ env.POETRY_VERSION }} --python '${{ steps.setup-python.outputs.python-path }}'
32
- name: Check for lock changes
0 commit comments