diff options
Diffstat (limited to '.github/workflows/ci-tests.yml')
| -rw-r--r-- | .github/workflows/ci-tests.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 4f2aaa9bc..f24159c40 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -20,6 +20,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" - "pypy-3.8" os: - "ubuntu-20.04" @@ -49,7 +50,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} architecture: ${{ matrix.architecture }} @@ -62,19 +63,19 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 architecture: x64 - run: pip install tox - - run: tox -e py311-cover,coverage + - run: tox -e py312-cover,coverage docs: runs-on: ubuntu-20.04 name: Build the documentation steps: - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.8 architecture: x64 @@ -86,7 +87,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.8 architecture: x64 |
