Skip to content

Commit 047f076

Browse files
test: windows
1 parent 229f151 commit 047f076

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/ci.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,40 @@ jobs:
1818
uses: codecov/codecov-action@v4-beta
1919
env:
2020
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
21+
windows-test:
22+
runs-on: windows-latest
23+
strategy:
24+
matrix:
25+
runNum: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
- name: Set up Python 3.10
30+
uses: actions/setup-python@v4
31+
with:
32+
python-version: '3.10'
33+
- name: Install dependencies
34+
run: pip install -r requirements.txt
35+
- name: Run tests and collect coverage
36+
run: pytest --cov app
37+
38+
- name: Upload coverage to Codecov
39+
uses: codecov/codecov-action@v3
40+
env:
41+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
42+
- name: Upload coverage to Codecov
43+
uses: codecov/codecov-action@v3
44+
env:
45+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
46+
- name: Upload coverage to Codecov
47+
uses: codecov/codecov-action@v3
48+
env:
49+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
50+
- name: Upload coverage to Codecov
51+
uses: codecov/codecov-action@v3
52+
env:
53+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
54+
- name: Upload coverage to Codecov
55+
uses: codecov/codecov-action@v3
56+
env:
57+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)