Skip to content

Commit c690643

Browse files
hugovkpganssle
authored andcommitted
Add support for Python 3.12
1 parent eaf2f5f commit c690643

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
name: tzdata contents
22

3-
on: [pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
tests:
77

88
runs-on: ${{ matrix.os }}
99
strategy:
10+
fail-fast: false
1011
matrix:
11-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1213
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
1314
exclude:
1415
- python-version: "2.7"
@@ -29,6 +30,7 @@ jobs:
2930
uses: actions/setup-python@v4
3031
with:
3132
python-version: ${{ matrix.python-version }}
33+
allow-prereleases: true
3234
- name: Install dependencies
3335
run: |
3436
python -m pip install --upgrade pip
@@ -50,7 +52,7 @@ jobs:
5052
- name: ${{ matrix.toxenv }}
5153
uses: actions/setup-python@v4
5254
with:
53-
python-version: "3.10"
55+
python-version: "3.x"
5456
- name: Install tox
5557
run: |
5658
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)