Skip to content

Commit ed895bb

Browse files
committed
Update versions and run matrix
1 parent fb357cb commit ed895bb

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/python-package.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest, windows-latest, macos-latest]
9-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
9+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1010
steps:
11-
- uses: actions/checkout@v2
12-
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v2
14-
with:
15-
python-version: ${{ matrix.python-version }}
16-
- name: Install dependencies
17-
run: |
18-
pip install -e .[test]
19-
- name: Lint with flake8
20-
run: |
21-
flake8
22-
flake8 --select=C90 --exit-zero --max-complexity=10
23-
- name: Test with pytest
24-
run: |
25-
pytest --cov=./ --cov-report=xml
26-
- name: Codecov
27-
uses: codecov/codecov-action@v1.0.13
11+
- uses: actions/checkout@v4
12+
- name: Set up Python ${{ matrix.python-version }}
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: ${{ matrix.python-version }}
16+
- name: Install dependencies
17+
run: |
18+
pip install -e .[test]
19+
- name: Lint with flake8
20+
run: |
21+
flake8
22+
flake8 --select=C90 --exit-zero --max-complexity=10
23+
- name: Test with pytest
24+
run: |
25+
pytest --cov=./ --cov-report=xml
26+
- name: Codecov
27+
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)