Skip to content

Commit

Permalink
run pypy39 on windows
Browse files Browse the repository at this point in the history
fix matrix syntax

fix pypy version syntax

remove pip upgrade
  • Loading branch information
mib1185 committed Jun 30, 2024
1 parent 24ee4a5 commit 91fc05c
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@ on: [push, pull_request]

jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
include:
- python-version: "3.7"
os: ubuntu-latest
- python-version: "3.8"
os: ubuntu-latest
- python-version: "3.9"
os: ubuntu-latest
- python-version: "3.10"
os: ubuntu-latest
- python-version: "3.11"
os: ubuntu-latest
- python-version: "3.12"
os: ubuntu-latest
- python-version: "pypy3.9"
os: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 91fc05c

Please sign in to comment.