Skip to content

Commit

Permalink
ci: Fix cache-dependency-path
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 11, 2024
1 parent 70c4a6a commit 168a96d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.cfg
cache-dependency-path: pyproject.toml
- run: pip install .[test]
# Python 3.10 issues "DeprecationWarning: There is no current event loop" spuriously
- if: matrix.python-version == '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
python-version: '3.10'
cache: pip
cache-dependency-path: setup.cfg
cache-dependency-path: pyproject.toml
- shell: bash
run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash -
- shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
with:
python-version: '3.11'
cache: pip
cache-dependency-path: setup.cfg
cache-dependency-path: pyproject.toml
- run: pip install .[types]
- run: mypy --strict --show-error-codes yapw

0 comments on commit 168a96d

Please sign in to comment.