File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ jobs:
15
15
matrix :
16
16
os : [
17
17
ubuntu-latest,
18
- # windows-latest,
18
+ windows-latest,
19
19
macOS-latest
20
20
]
21
21
python-version : ['3.9', '3.10', '3.11', '3.12']
22
22
poetry-version : [1.7.1]
23
23
fail-fast : false
24
24
runs-on : ${{ matrix.os }}
25
25
steps :
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v4
27
27
28
28
- name : Set up Python ${{ matrix.python-version }}
29
- uses : actions/setup-python@v2
29
+ uses : actions/setup-python@v5
30
30
with :
31
31
python-version : ${{ matrix.python-version }}
32
32
51
51
run : poetry config virtualenvs.in-project true
52
52
53
53
- name : Set up cache
54
- uses : actions/cache@v2
54
+ uses : actions/cache@v4
55
55
id : cache
56
56
with :
57
57
path : .venv
64
64
run : poetry run pytest --cov=paat --cov-report=xml --disable-pytest-warnings
65
65
66
66
- name : Upload coverage to Codecov
67
- uses : codecov/codecov-action@v2
67
+ uses : codecov/codecov-action@v4
68
68
with :
69
69
file : ./coverage.xml
70
70
flags : unittests
You can’t perform that action at this time.
0 commit comments