Skip to content

Commit

Permalink
don't cache on py3.6 windows combo (#916)
Browse files Browse the repository at this point in the history
* don't cache on py3.6 windows combo

* singles

* opposite

* hmmm

* another shot

* again
  • Loading branch information
briantist committed Nov 20, 2022
1 parent dbe0c01 commit 500511a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
cache: ${{ matrix.python-version != '3.6' && 'poetry' || !startsWith(matrix.os, 'windows') && 'poetry' || '' }}

- name: Install dependencies
run: poetry install --no-interaction --no-root

- name: Build and install wheel
run: |
poetry build
Expand Down

0 comments on commit 500511a

Please sign in to comment.