Skip to content

Commit

Permalink
Try to fix CI warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed May 12, 2024
1 parent f3218f9 commit 22a11ab
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,19 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Get pip cache dir
- name: Get pip cache dir Unix
if: matrix.os != 'windows-latest'
id: pip-cache
run: |
python -m pip install --upgrade pip
echo "::set-output name=dir::$(pip cache dir)"
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Get pip cache dir Windows
if: matrix.os == 'windows-latest'
id: pip-cache
run: |
python -m pip install --upgrade pip
echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT
- name: Cache dependencies
id: cache-dep
Expand Down

0 comments on commit 22a11ab

Please sign in to comment.