Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
Fix syntax error
  • Loading branch information
paynejason committed Nov 6, 2023
1 parent 0ddf137 commit 8804a3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
with:
python-version: "3.10"
- name: show python path
run: python -c "import sys; print('\n'.join(sys.path))"
run: |
python -c "import sys; print('\n'.join(sys.path))"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 8804a3e

Please sign in to comment.