We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9940230 commit 0d059f7Copy full SHA for 0d059f7
1 file changed
.github/workflows/ci.yml
@@ -19,14 +19,17 @@ on:
19
jobs:
20
lint:
21
runs-on: ubuntu-latest
22
+ strategy:
23
+ matrix:
24
+ python-version: ["3.14"]
25
steps:
26
- name: Checkout
27
uses: actions/checkout@v6
28
29
- name: Set up Python
30
uses: actions/setup-python@v5
31
with:
- python-version: "3.14"
32
+ python-version: ${{ matrix.python-version }}
33
34
- name: Install Poetry
35
uses: snok/install-poetry@v1
@@ -38,7 +41,7 @@ jobs:
38
41
uses: actions/cache@v4
39
42
40
43
path: .venv
- key: ${{ runner.os }}-python-3.14-poetry-${{ hashFiles('poetry.lock') }}
44
+ key: ${{ runner.os }}-python-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }}
45
46
- name: Check for poetry file changes
47
id: filter
0 commit comments