Skip to content

Commit 1a9fd84

Browse files
authored
Merge pull request #15238 from rmcdermo/master
Workflows: trying to fix Actions with new pip requirements
2 parents 17b5fb4 + 079caae commit 1a9fd84

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)