Skip to content

Commit b0c10cf

Browse files
committed
Test against Python 3.12
1 parent f255ec8 commit b0c10cf

1 file changed

Lines changed: 4 additions & 23 deletions

File tree

.github/workflows/integration.yml

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
strategy:
1818
max-parallel: 6
1919
matrix:
20-
check: [pylint]
20+
check: [rufflint, ruffformatcheck, doc8, docs, rstcheck, build-check]
2121

2222
steps:
2323
- uses: actions/checkout@v3
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.12'
2828
- name: Install tox
2929
run: |
3030
pip install --upgrade pip
@@ -37,10 +37,10 @@ jobs:
3737
needs: checks
3838
runs-on: ${{ matrix.os }}
3939
strategy:
40-
max-parallel: 4
40+
max-parallel: 6
4141
matrix:
4242
os: [ubuntu-latest]
43-
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
43+
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
4444

4545
steps:
4646
- uses: actions/checkout@v3
@@ -57,22 +57,3 @@ jobs:
5757
5858
- name: Test with tox
5959
run: tox -e py
60-
61-
builds:
62-
needs: tests
63-
runs-on: ubuntu-latest
64-
65-
steps:
66-
- uses: actions/checkout@v3
67-
68-
- name: Set up Python
69-
uses: actions/setup-python@v4
70-
with:
71-
python-version: '3.10'
72-
73-
- name: Install build
74-
run: |
75-
pip install --upgrade pip
76-
pip install build
77-
78-
- run: python -m build .

0 commit comments

Comments
 (0)