Skip to content

Commit 5a47c68

Browse files
ci: go up a dir first
1 parent 13d9744 commit 5a47c68

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
python-version: ${{ matrix.python }}
2727
cache: 'pip'
2828
cache-dependency-path: |
29-
'**/requirements*.txt'
30-
'**/setup.py'
29+
'../**/requirements*.txt'
30+
'../**/setup.py'
3131
- run: python -m pip install --upgrade setuptools pip tox virtualenv
3232
# Run tox only for the installed py version on the runner as outlined in the python matrix
3333
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini

.github/workflows/pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
python-version: ${{ matrix.python }}
2424
cache: 'pip'
2525
cache-dependency-path: |
26-
'**/requirements*.txt'
27-
'**/setup.py'
26+
'../**/requirements*.txt'
27+
'../**/setup.py'
2828
- run: python -m pip install --upgrade setuptools pip tox virtualenv
2929
# Run tox only for the installed py version on the runner as outlined in the python matrix
3030
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini
@@ -43,8 +43,8 @@ jobs:
4343
python-version: 3.8
4444
cache: 'pip'
4545
cache-dependency-path: |
46-
'**/requirements*.txt'
47-
'**/setup.py'
46+
'../**/requirements*.txt'
47+
'../**/setup.py'
4848
- name: Install dependencies
4949
run: pip install wheel
5050
- name: Build package

0 commit comments

Comments
 (0)