Skip to content

Commit

Permalink
Suggested fix for activating venv on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-griffiths committed Jan 5, 2025
1 parent 5b7cac9 commit 37ede99
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ jobs:
run: |
cd repo
uv venv
source .venv/bin/activate
if [[ "$RUNNER_OS" == "Windows" ]]; then
.venv\\Scripts\\activate
else
source .venv/bin/activate
fi
- name: Build and test
run: |
Expand Down

0 comments on commit 37ede99

Please # to comment.