Skip to content

Commit d474344

Browse files
committed
Fix CI
1 parent 7a68438 commit d474344

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18-
- name: Setup Python 3.11
18+
- name: Setup Python 3.12
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: '3.11'
21+
python-version: '3.12'
2222
architecture: 'x64'
2323

2424
- name: Install hatch

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,18 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: ['3.11', '3.12']
19-
defaults:
20-
run:
21-
shell: bash -l {0}
2219
steps:
2320
- uses: actions/checkout@v4
2421
- uses: actions/setup-python@v5
2522
with:
26-
python-version: matrix.python-version
23+
python-version: ${{ matrix.python-version }}
2724
cache: 'pip'
2825
cache-dependency-path: |
2926
**/pyproject.toml
3027
3128
- name: Install package
3229
run: |
33-
pip install .[test]
30+
pip install .[tests]
3431
3532
- name: Test
3633
if: matrix.python-version != '3.12'

0 commit comments

Comments
 (0)