We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dce3b3 commit 55066baCopy full SHA for 55066ba
.github/workflows/continuous-integration.yml
@@ -42,16 +42,16 @@ jobs:
42
enable-cache: true
43
- name: Sync
44
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
+ - name: Test on windows
+ if: runner.os == 'Windows'
53
env:
54
- TMPDIR: "${{ matrix.os == 'windows-latest' && 'D:\\a\\_temp' || '' }}"
+ TMPDIR: 'D:\\a\\_temp'
+ run: |
+ .venv\Scripts\activate
+ scripts\\test
+ - name: Test
+ if: runner.os != 'Windows'
+ run: uv run scripts/test
55
56
coverage:
57
name: coverage
0 commit comments