Skip to content

Commit

Permalink
Merge pull request #157 from jazzband/all-repos_autofix_all-repos-sed
Browse files Browse the repository at this point in the history
CI: Replace deprecated pypy3 with pypy-3.8
  • Loading branch information
beregond committed Jun 16, 2022
2 parents 946541f + 6ddc77e commit e157a4d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Test
on: [push, pull_request]

jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.8"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -49,3 +49,11 @@ jobs:
uses: codecov/codecov-action@v1
with:
name: Python ${{ matrix.python-version }}

success:
needs: test
runs-on: ubuntu-latest
name: test successful
steps:
- name: Success
run: echo Test successful

0 comments on commit e157a4d

Please sign in to comment.