Skip to content

Commit

Permalink
Fix windows venv activation
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Dec 14, 2023
1 parent 8155fbf commit 877b195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
- name: Test Wheel Installation
run: |
python -m venv venv
if [[ ${{ runner.os }} == 'Windows' ]]; then
venv\Scripts\activate
if [ "${{ runner.os }}" = "Windows" ]; then
venv\Scripts\Activate.ps1
else
source venv/bin/activate
fi
Expand Down

0 comments on commit 877b195

Please sign in to comment.