Skip to content

Commit

Permalink
Run tests on more pypy versions in CI (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Jun 30, 2023
1 parent b3ddcb6 commit fc5243b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,20 @@ jobs:
# Python version, because typing sometimes changed between bugfix releases.
# For available versions, see:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.7", "3.7.1", "3.8", "3.8.0", "3.9", "3.9.0", "3.10", "3.10.0", "3.11", "3.11.0", "3.12", "pypy3.9"]
python-version:
- "3.7"
- "3.7.1"
- "3.8"
- "3.8.0"
- "3.9"
- "3.9.0"
- "3.10"
- "3.10.0"
- "3.11"
- "3.11.0"
- "3.12"
- "pypy3.9"
- "pypy3.10"

runs-on: ubuntu-20.04

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/third_party.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.9"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand All @@ -184,6 +184,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install typeguard test requirements
run: pip install -e ./typeguard[test]
- name: Install typing_extensions latest
Expand Down Expand Up @@ -307,7 +308,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.9"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down

0 comments on commit fc5243b

Please sign in to comment.