Skip to content

Commit

Permalink
CI: Exclude windows-latest from caching the Poetry environment
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jan 24, 2021
1 parent 1312f09 commit 6d4b13f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
key: ${{ matrix.os }}-${{ matrix.python-version }}-poetry-${{ env.CACHE_NUMBER }}-${{ hashFiles('poetry.lock') }}

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' || contains(matrix.os, 'windows')
run: poetry install --no-interaction --no-root --extras=http --extras=sql --extras=excel

- name: Install library
Expand Down

0 comments on commit 6d4b13f

Please sign in to comment.