Skip to content

Commit 15a0e31

Browse files
committed
Update GitHub workflows
1 parent 66c2a91 commit 15a0e31

File tree

4 files changed

+885
-742
lines changed

4 files changed

+885
-742
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,20 @@ jobs:
4646
strategy:
4747
fail-fast: false
4848
matrix:
49-
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
49+
python-version: [ '3.12', '3.13', '3.14' ]
5050

5151
steps:
5252
- name: Check out repository
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454

5555
- name: Set up Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: ${{ matrix.python-version }}
59+
cache: 'pip'
5960

6061
- name: Set up Poetry
61-
uses: abatilo/actions-poetry@v2
62+
uses: abatilo/actions-poetry@v4
6263
with:
6364
poetry-version: 1.8
6465

@@ -80,8 +81,8 @@ jobs:
8081
poetry run coverage xml
8182
8283
- name: Upload code coverage report
83-
if: ${{ github.event_name == 'push' && matrix.python-version == '3.13' }}
84-
uses: codecov/codecov-action@v4
84+
if: ${{ github.event_name == 'push' && matrix.python-version == '3.14' }}
85+
uses: codecov/codecov-action@v5
8586
with:
8687
token: ${{ secrets.CODECOV_TOKEN }}
8788
files: ./coverage.xml

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,24 @@ on:
2121
- v*
2222

2323
env:
24-
PYTHON_VERSION: 3.13
24+
PYTHON_VERSION: 3.14
2525

2626
jobs:
2727
release:
2828
runs-on: ubuntu-latest
2929

3030
steps:
3131
- name: Check out repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- name: Set up Python
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{ env.PYTHON_VERSION }}
38+
cache: 'pip'
3839

3940
- name: Set up Poetry
40-
uses: abatilo/actions-poetry@v3
41+
uses: abatilo/actions-poetry@v4
4142
with:
4243
poetry-version: 1.8
4344

0 commit comments

Comments
 (0)