Skip to content

Commit 55066ba

Browse files
committed
fix: try two diff steps
1 parent 6dce3b3 commit 55066ba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ jobs:
4242
enable-cache: true
4343
- name: Sync
4444
run: uv sync --all-extras
45-
- name: Test
46-
# Windows doesn't like uv run when pointed at a script 🤷‍♀️
47-
run: |
48-
if [ "$RUNNER_OS" == "Windows" ]; then
49-
.venv\Scripts\activate && scripts\\test
50-
else
51-
uv run scripts/test
52-
fi
45+
- name: Test on windows
46+
if: runner.os == 'Windows'
5347
env:
54-
TMPDIR: "${{ matrix.os == 'windows-latest' && 'D:\\a\\_temp' || '' }}"
48+
TMPDIR: 'D:\\a\\_temp'
49+
run: |
50+
.venv\Scripts\activate
51+
scripts\\test
52+
- name: Test
53+
if: runner.os != 'Windows'
54+
run: uv run scripts/test
5555

5656
coverage:
5757
name: coverage

0 commit comments

Comments
 (0)