We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa09a1e commit eace1a9Copy full SHA for eace1a9
1 file changed
.github/workflows/unit-tests.yaml
@@ -25,10 +25,29 @@ jobs:
25
uses: astral-sh/setup-uv@v5
26
with:
27
python-version: ${{ matrix.python-version }}
28
- version: "0.5.30"
29
30
- name: install dependencies
31
run: uv sync
32
33
- name: Unit tests
34
- run: uv run pytest tests/ --benchmark-skip -m "not ci_skip"
+ run: uv run pytest tests/ --benchmark-skip -m "not ci_skip"
+
35
+ unit-tests-windows:
36
+ runs-on: windows-latest
37
+ continue-on-error: true
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+ with:
41
+ fetch-depth: 0
42
+ token: ${{ secrets.GITHUB_TOKEN }}
43
44
+ - name: Install uv
45
+ uses: astral-sh/setup-uv@v5
46
47
+ python-version: "3.11"
48
49
+ - name: install dependencies
50
+ run: uv sync
51
52
+ - name: Unit tests
53
0 commit comments