Skip to content

Commit

Permalink
More CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-wilson committed Jan 10, 2024
1 parent 62162bc commit a736dc3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test_suite_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ jobs:
- name: Setup virtual environment
run: |
python -m venv .venv
source .venv/bin/activate
if [ "$RUNNER_OS" == "Windows" ]; then
source .venv/Scripts/activate
else
source .venv/bin/activate
fi
- name: Build Rust
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit a736dc3

Please sign in to comment.