Skip to content

Commit 0d059f7

Browse files
author
Martin Kirchgessner
committed
hardcode 3.14 fewer times
1 parent 9940230 commit 0d059f7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@ on:
1919
jobs:
2020
lint:
2121
runs-on: ubuntu-latest
22+
strategy:
23+
matrix:
24+
python-version: ["3.14"]
2225
steps:
2326
- name: Checkout
2427
uses: actions/checkout@v6
2528

2629
- name: Set up Python
2730
uses: actions/setup-python@v5
2831
with:
29-
python-version: "3.14"
32+
python-version: ${{ matrix.python-version }}
3033

3134
- name: Install Poetry
3235
uses: snok/install-poetry@v1
@@ -38,7 +41,7 @@ jobs:
3841
uses: actions/cache@v4
3942
with:
4043
path: .venv
41-
key: ${{ runner.os }}-python-3.14-poetry-${{ hashFiles('poetry.lock') }}
44+
key: ${{ runner.os }}-python-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }}
4245

4346
- name: Check for poetry file changes
4447
id: filter

0 commit comments

Comments
 (0)