Skip to content

Commit

Permalink
Fix for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Apr 2, 2024
1 parent afc3dab commit 8837ce7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ runs:
python3 -V
which python3
python3 -m venv $RUNNER_TEMP/venv
echo "$RUNNER_TEMP/venv/bin" >> $GITHUB_PATH
echo "$RUNNER_TEMP/venv/Scripts" >> $GITHUB_PATH
export PATH="$RUNNER_TEMP/venv/bin:$RUNNER_TEMP//Scripts:$PATH"
ls -lah "$RUNNER_TEMP/venv/Scripts"
echo "$GITHUB_PATH"
cat "$GITHUB_PATH"
echo "$RUNNER_TEMP/venv/bin" >> "$GITHUB_PATH"
echo "$RUNNER_TEMP/venv/Scripts" >> "$GITHUB_PATH"
cat "$GITHUB_PATH"
export PATH="$RUNNER_TEMP/venv/bin:$RUNNER_TEMP/Scripts:$PATH"
which python3
# inspect pip cache
Expand Down

0 comments on commit 8837ce7

Please sign in to comment.