|
6 | 6 | strategy:
|
7 | 7 | matrix:
|
8 | 8 | 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"] |
10 | 10 | 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