@@ -13,12 +13,12 @@ jobs:
1313 runs-on : ubuntu-latest
1414 strategy :
1515 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]
1717
1818 steps :
19- - uses : actions/checkout@v3
19+ - uses : actions/checkout@v4
2020 - name : Setup Python # Set Python version
21- uses : actions/setup-python@v4
21+ uses : actions/setup-python@v5
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424 - name : Install dependencies
3636 - name : Test with pytest
3737 run : pytest tests/ --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3838 - name : Upload pytest test results
39- uses : actions/upload-artifact@v3
39+ uses : actions/upload-artifact@v4
4040 with :
4141 name : pytest-results-${{ matrix.python-version }}
4242 path : junit/test-results-${{ matrix.python-version }}.xml
5656 matrix :
5757 python-version : ["3.10"]
5858 steps :
59- - uses : actions/checkout@v3
59+ - uses : actions/checkout@v4
6060 - name : Setup Python # Set Python version
61- uses : actions/setup-python@v4
61+ uses : actions/setup-python@v5
6262 - name : Install dependencies
6363 run : |
6464 python -m pip install --upgrade pip
0 commit comments