Skip to content

Commit b93d7d0

Browse files
committed
Add python 3.12.
1 parent 0d5a332 commit b93d7d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
30-
python-version: ['3.8', '3.9', '3.10', '3.11']
30+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3131

3232
steps:
3333
- uses: actions/checkout@v4
@@ -47,7 +47,7 @@ jobs:
4747
run: tox -e pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
4848

4949
- name: Upload coverage report for unit tests and doctests.
50-
if: runner.os == 'Linux' && matrix.python-version == '3.8'
50+
if: runner.os == 'Linux' && matrix.python-version == '3.10'
5151
shell: bash -l {0}
5252
run: bash <(curl -s https://codecov.io/bash) -F unit -c
5353

@@ -56,6 +56,6 @@ jobs:
5656
run: tox -e pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
5757

5858
- name: Upload coverage reports of end-to-end tests.
59-
if: runner.os == 'Linux' && matrix.python-version == '3.8'
59+
if: runner.os == 'Linux' && matrix.python-version == '3.10'
6060
shell: bash -l {0}
6161
run: bash <(curl -s https://codecov.io/bash) -F end_to_end -c

0 commit comments

Comments
 (0)