summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f6f97ea5..5ed536b1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -43,7 +43,8 @@ jobs:
${{ env.pythonLocation }}/scripts/*
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements.txt') }}
- name: Install python prerequisites
- if: steps.cache-deps.outputs.cache-hit != 'true'
+ # Cache step doesnt seems to work right on windows, so install Python prerequisites on Windows regardless
+ if: matrix.os == 'windows-latest' || steps.cache-deps.outputs.cache-hit != 'true'
run: |
pip install -U --user pip setuptools setuptools-scm flake8 nox
- name: Lint