Skip to content

Commit 110b2bf

Browse files
committed
feat: dropped support for Python 3.8 and bump libs
1 parent ec5c5c7 commit 110b2bf

File tree

3 files changed

+650
-524
lines changed

3 files changed

+650
-524
lines changed

.github/workflows/python-app.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ jobs:
44

55
test:
66
name: Test
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11"]
10+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1111

1212
steps:
1313
- name: Setup dependencies
14-
uses: ExpressApp/github-actions-poetry@v0.3
14+
uses: ExpressApp/github-actions-poetry@v0.4
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
poetry-version: "1.3.2"
@@ -28,14 +28,15 @@ jobs:
2828
fail_ci_if_error: true
2929
files: ./coverage.xml
3030
flags: unittests
31+
token: ${{ secrets.CODECOV_TOKEN }}
3132

3233
lint:
3334
name: Lint
34-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-22.04
3536

3637
steps:
3738
- name: Setup dependencies
38-
uses: ExpressApp/github-actions-poetry@v0.3
39+
uses: ExpressApp/github-actions-poetry@v0.4
3940
with:
4041
python-version: ${{ matrix.python-version }}
4142
poetry-version: "1.3.2"
@@ -46,11 +47,11 @@ jobs:
4647
4748
docs-lint:
4849
name: Docs lint
49-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-22.04
5051

5152
steps:
5253
- name: Setup dependencies
53-
uses: ExpressApp/github-actions-poetry@v0.3
54+
uses: ExpressApp/github-actions-poetry@v0.4
5455
with:
5556
python-version: ${{ matrix.python-version }}
5657
poetry-version: "1.3.2"

0 commit comments

Comments
 (0)