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 3e6316f commit 6ccdd01Copy full SHA for 6ccdd01
.github/workflows/ci.yml
@@ -71,19 +71,19 @@ jobs:
71
path: ${{ env.VENV_PATH }}
72
key: >-
73
${{ runner.os }}-${{ matrix.python }}-venv-${{
74
- hashFiles('pyproject.toml') }}-${{
75
- hashFiles('.pre-commit-config.yaml') }}
+ hashFiles('pyproject.toml') }}
76
77
- name: Create venv (NEW CACHE)
78
if: steps.cache-venv.outputs.cache-hit != 'true'
79
run: |
80
python -m venv "${{ env.VENV_PATH }}"
81
- cd "${{ env.VENV_PATH }}"
82
- ls
83
- cd bin
84
85
source "${{ env.VENV_ACTIVATE }}"
86
- pip install -e ".[all]"
+ python -m pip install -e ".[all]"
+
+ - name: show off
+ run: |
+ which pytest
+ which codespell
87
88
- name: codespell
89
if: matrix.run_doc == true
0 commit comments