File tree Expand file tree Collapse file tree 1 file changed +8
-15
lines changed
Expand file tree Collapse file tree 1 file changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -18,27 +18,20 @@ jobs:
1818 test :
1919 strategy :
2020 matrix :
21- python-version : ["3.10", "3.12", "3.13"]
21+ python-version : ["3.10", "3.11", "3. 12", "3.13"]
2222 platform :
2323 - ubuntu-latest
2424 env :
2525 OS : ${{ matrix.platform }}
2626 PYTHON : ${{ matrix.python }}
2727 runs-on : ${{ matrix.platform }}
2828 steps :
29- - uses : actions/checkout@v3
30- - uses : actions/setup-python@v4
29+ - uses : actions/checkout@v4
30+ - name : Set up Python ${{ matrix.python-version }}
31+ uses : actions/setup-python@v5
3132 with :
32- python-version : ${{ matrix.python }}
33-
34- - name : install pipenv
35- run : pip3 install pipenv
36-
37- - name : create env
38- run : pipenv shell
39-
40- - name : install python dev packages
41- run : pipenv install --ignore-pipfile --dev
42-
43- - name : pytest
33+ python-version : ${{ matrix.python-version }}
34+ - name : Display Python version
35+ run : python -c "import sys; print(sys.version)"
36+ - name : Test with pytest
4437 run : pytest
You can’t perform that action at this time.
0 commit comments