Skip to content

Commit

Permalink
Run tests on Python 3.13 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Aug 13, 2024
1 parent 1d565a2 commit c9c4e3d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.10']

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand All @@ -32,11 +34,11 @@ jobs:
python -m pip install tox tox-gh-actions
sudo apt-get install libmemcached-dev
- name: Lint
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.12'
run: |
tox -e lint,mypy
- name: Docs
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.12'
run: |
tox -e docs
- name: Disable IPv6 localhost
Expand Down

0 comments on commit c9c4e3d

Please sign in to comment.