Skip to content

Commit

Permalink
Check pip install paths
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Dec 6, 2023
1 parent 12f2d09 commit f6c8725
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt --user ; fi
find ${HOME} -name *docopt*
pip list -v
pip list -v --user || true
pip show docopt --user || true
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
find / -name *docopt*
pip show docopt
pip list -v
echo "/usr/local/bin" >> $GITHUB_PATH
- name: Lint with flake8
run: |
Expand Down

0 comments on commit f6c8725

Please sign in to comment.