Skip to content

Commit

Permalink
run pypy39 on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mib1185 committed Jun 30, 2024
1 parent 24ee4a5 commit ae7174f
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,24 @@ 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"]
- matrix.python-version: "3.7"
matrix.os: ubuntu-latest
- matrix.python-version: "3.8"
matrix.os: ubuntu-latest
- matrix.python-version: "3.9"
matrix.os: ubuntu-latest
- matrix.python-version: "3.10"
matrix.os: ubuntu-latest
- matrix.python-version: "3.11"
matrix.os: ubuntu-latest
- matrix.python-version: "3.12"
matrix.os: ubuntu-latest
- matrix.python-version: "pypy39"
matrix.os: windows-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -19,6 +31,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip to latest
run: pip install --upgrade pip

- name: Install dependencies
run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools

Expand Down

0 comments on commit ae7174f

Please sign in to comment.