Skip to content

Commit

Permalink
ci: try bash on windoze?
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Oct 29, 2024
1 parent d534a8e commit 2107be2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,12 @@ jobs:
run: uv sync --all-extras
- name: Test on windows
if: runner.os == 'Windows'
shell: bash
env:
TMPDIR: 'D:\\a\\_temp'
run: scripts\\test
run: |
source .venv/bin/activate
scripts/test
- name: Test
if: runner.os != 'Windows'
run: uv run scripts/test
Expand Down

0 comments on commit 2107be2

Please sign in to comment.