Browse Source

CI: Disable venv caching

master
Kristaps Kaupe 2 years ago
parent
commit
d25457b209
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 16
      .github/workflows/unittests.yml

16
.github/workflows/unittests.yml

@ -18,14 +18,14 @@ jobs:
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Cache venv # - name: Cache venv
id: cache-venv # id: cache-venv
uses: actions/cache@v3 # uses: actions/cache@v3
env: # env:
cache-name: venv # cache-name: venv
with: # with:
path: jmvenv # path: jmvenv
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} # key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }}
- name: Setup joinmarket + virtualenv - name: Setup joinmarket + virtualenv
if: steps.cache-venv.outputs.cache-hit != 'true' if: steps.cache-venv.outputs.cache-hit != 'true'
run: | run: |

Loading…
Cancel
Save