Skip to content

Commit 5644732

Browse files
committed
update gitflow
1 parent a6f5ee9 commit 5644732

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ jobs:
99
strategy:
1010
max-parallel: 5
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.x"]
1313

14+
timeout-minutes: 3
1415
steps:
15-
- uses: actions/checkout@v1
16-
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18-
with:
19-
python-version: ${{ matrix.python-version }}
20-
- name: Install dependencies
21-
run: |
22-
python -m pip install --upgrade pip
23-
python -m pip install .[all]
24-
- name: Test with pytest
25-
run: |
26-
pip install pytest
27-
pytest
16+
- uses: actions/checkout@v4
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
python -m pip install .[all]
25+
- name: Test with pytest
26+
run: |
27+
pip install pytest
28+
pytest

0 commit comments

Comments
 (0)