Skip to content

Commit 079caae

Browse files
committed
Workflows: trying to fix Actions with new pip requirements
1 parent 1b92c98 commit 079caae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ jobs:
102102
with:
103103
python-version: '3.9'
104104
cache: 'pip' # caching pip dependencies
105-
- run: pip install -r .github/requirements.txt
105+
- run: |
106+
echo $GITHUB_WORKSPACE
107+
cd $GITHUB_WORKSPACE/.github
108+
pip install -r requirements.txt
106109
107110
- name: Python test
108111
run: |

0 commit comments

Comments
 (0)