@@ -13,12 +13,12 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- python-version : [3.9, "3.10", " 3.11", " 3.12", " 3.13" ]
16
+ python-version : [3.9, "3.10", 3.11, 3.12, 3.13]
17
17
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
20
20
- name : Setup Python # Set Python version
21
- uses : actions/setup-python@v4
21
+ uses : actions/setup-python@v5
22
22
with :
23
23
python-version : ${{ matrix.python-version }}
24
24
- name : Install dependencies
36
36
- name : Test with pytest
37
37
run : pytest tests/ --junitxml=junit/test-results-${{ matrix.python-version }}.xml
38
38
- name : Upload pytest test results
39
- uses : actions/upload-artifact@v3
39
+ uses : actions/upload-artifact@v4
40
40
with :
41
41
name : pytest-results-${{ matrix.python-version }}
42
42
path : junit/test-results-${{ matrix.python-version }}.xml
56
56
matrix :
57
57
python-version : ["3.10"]
58
58
steps :
59
- - uses : actions/checkout@v3
59
+ - uses : actions/checkout@v4
60
60
- name : Setup Python # Set Python version
61
- uses : actions/setup-python@v4
61
+ uses : actions/setup-python@v5
62
62
- name : Install dependencies
63
63
run : |
64
64
python -m pip install --upgrade pip
0 commit comments