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 3e07fd7 commit 335381aCopy full SHA for 335381a
.github/workflows/j2cli.yml
@@ -40,6 +40,12 @@ jobs:
40
version: 1.7.0
41
virtualenvs-create: true
42
virtualenvs-in-project: true # create .venv in test directory
43
+ - name: Load cached tox environment
44
+ id: cached-toxenv
45
+ uses: actions/cache@v3
46
+ with:
47
+ path: .tox/py${{ matrix.python-version }}-**
48
+ key: tox-py${{ matrix.python-version }}
49
- name: Install Poetry development dependencies # main dependencies are handled by tox
50
if: steps.cached-poetry.outputs.cache-hit != 'true'
51
run: poetry install --no-interaction --no-root --only=dev
0 commit comments