File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
python-version : ["3.11", "3.12"]
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
13
- name : Set up Python ${{ matrix.python-version }}
14
- uses : actions/setup-python@v3
14
+ uses : actions/setup-python@v4
15
15
with :
16
16
python-version : ${{ matrix.python-version }}
17
17
- name : Install dependencies
Original file line number Diff line number Diff line change 25
25
run : |
26
26
pytest -m "not unwritten" --cov=. --cov-report=xml --cov-report=html --junitxml=junit/test-results-${{ matrix.python-version }}.xml
27
27
- name : Upload pytest test results
28
- uses : actions/upload-artifact@v3
28
+ uses : actions/upload-artifact@v4
29
29
with :
30
30
name : pytest-results-${{ matrix.python-version }}
31
31
path : junit/test-results-${{ matrix.python-version }}.xml
You can’t perform that action at this time.
0 commit comments