Skip to content

Commit

Permalink
ci: go up a dir first
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonsteiner committed Dec 20, 2024
1 parent 13d9744 commit 5a47c68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: |
'**/requirements*.txt'
'**/setup.py'
'../**/requirements*.txt'
'../**/setup.py'
- run: python -m pip install --upgrade setuptools pip tox virtualenv
# Run tox only for the installed py version on the runner as outlined in the python matrix
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: |
'**/requirements*.txt'
'**/setup.py'
'../**/requirements*.txt'
'../**/setup.py'
- run: python -m pip install --upgrade setuptools pip tox virtualenv
# Run tox only for the installed py version on the runner as outlined in the python matrix
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini
Expand All @@ -43,8 +43,8 @@ jobs:
python-version: 3.8
cache: 'pip'
cache-dependency-path: |
'**/requirements*.txt'
'**/setup.py'
'../**/requirements*.txt'
'../**/setup.py'
- name: Install dependencies
run: pip install wheel
- name: Build package
Expand Down

0 comments on commit 5a47c68

Please sign in to comment.