Skip to content

Commit 6e0d6a1

Browse files
committed
simplified workflow
1 parent 3952d18 commit 6e0d6a1

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,14 @@ on: [push, pull_request]
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
python-version: ["3.11", "3.12", "3.13", "3.14"]
1511

1612
steps:
1713
- uses: actions/checkout@v4
1814
- name: Set up Python ${{ matrix.python-version }}
1915
uses: actions/setup-python@v3
2016
with:
21-
python-version: ${{ matrix.python-version }}
17+
# this is needed only to install hatch
18+
python-version: 3.14
2219
- name: Install dependencies
2320
run: |
2421
python -m pip install --upgrade pip hatch

0 commit comments

Comments
 (0)