Skip to content

Commit

Permalink
Added Python 3.12 to test matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-hen committed Sep 28, 2023
1 parent f8a71d8 commit b4238a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python.
uses: actions/setup-python@v4
Expand All @@ -35,18 +35,19 @@ jobs:

strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

runs-on: ubuntu-20.04

steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python }}.
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
allow-prereleases: true

- name: Install package.
run: pip install .[dev]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python.
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up latest stable Python.
uses: actions/setup-python@v4
Expand Down

0 comments on commit b4238a5

Please sign in to comment.