File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 2424 uses : astral-sh/setup-uv@v5
2525 with :
2626 python-version : ${{ matrix.python-version }}
27- version : " 0.5.30"
2827
2928 - name : install dependencies
3029 run : uv sync
Original file line number Diff line number Diff line change 1+ name : windows-unit-tests
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ workflow_dispatch :
8+
9+ jobs :
10+ windows-unit-tests :
11+ continue-on-error : true
12+ runs-on : windows-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+ with :
16+ fetch-depth : 0
17+ token : ${{ secrets.GITHUB_TOKEN }}
18+
19+ - name : Install uv
20+ uses : astral-sh/setup-uv@v5
21+ with :
22+ python-version : " 3.13"
23+
24+ - name : install dependencies
25+ run : uv sync
26+
27+ - name : Unit tests
28+ run : uv run pytest tests/
You can’t perform that action at this time.
0 commit comments