We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3b993 commit 69d75a4Copy full SHA for 69d75a4
1 file changed
.github/workflows/python-app.yml
@@ -14,15 +14,18 @@ permissions:
14
15
jobs:
16
build:
17
-
18
runs-on: ubuntu-latest
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ python-version: ["3.10", "3.14"]
22
23
steps:
24
- uses: actions/checkout@v4
- - name: Set up Python 3.12
25
+ - name: Set up Python
26
uses: actions/setup-python@v5
27
with:
- python-version: "3.12"
28
+ python-version: ${{ matrix.python-version }}
29
- name: Install uv
30
uses: astral-sh/setup-uv@v7
31
@@ -44,6 +47,7 @@ jobs:
44
47
run: |
45
48
uv run mypy
46
49
- uses: codecov/codecov-action@v4
50
+ if: matrix.python-version == '3.14'
51
52
token: ${{ secrets.CODECOV_TOKEN }}
53
files: ./coverage.xml
0 commit comments