Skip to content

Commit 889cafb

Browse files
committed
redo testing workflow
1 parent ccce060 commit 889cafb

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.github/workflows/test.yaml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)