Add Python 3.12 to CI/CD workflows

This commit is contained in:
rlaphoenix 2023-12-06 15:29:59 +00:00
parent 532e68aba9
commit bcb2185f75
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.11.x" python-version: "3.12"
- name: Install Poetry - name: Install Poetry
uses: abatilo/actions-poetry@v2 uses: abatilo/actions-poetry@v2
with: with:

View File

@ -14,7 +14,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.11" python-version: "3.12"
- name: Install poetry - name: Install poetry
uses: abatilo/actions-poetry@v2 uses: abatilo/actions-poetry@v2
with: with:
@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}