Skip to content

Commit

Permalink
ci: Run on Py3.12 too (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
baggiponte authored Apr 30, 2024
1 parent 44c0246 commit 39f4120
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
target: [x86_64, x86, aarch64]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
target: [x64, x86]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
target: [x86_64, aarch64]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ on:
push:
branches: [ "main" ]
paths:
- 'functime/**'
- 'pyproject.toml'
- 'docs/code/quickstart.py'
- '.github/workflows/quickstart.yml'
- "functime/**"
- "pyproject.toml"
- "docs/code/quickstart.py"
- ".github/workflows/quickstart.yml"
pull_request:
branches: [ "main" ]

jobs:
quickstart:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 39f4120

Please sign in to comment.