Skip to content

Commit

Permalink
Add tests for PyPy 3.8 and 3.9 and update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Jan 12, 2023
1 parent 3ffda7f commit e82cf8e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -28,6 +28,8 @@ jobs:
"3.10",
"3.11",
"pypy-3.7",
"pypy-3.8",
"pypy-3.9",
]
pytest-version: [
"6.0.*",
Expand All @@ -46,10 +48,10 @@ jobs:
- { python-version: "3.11", pytest-version: "6.0.*" }
- { python-version: "3.11", pytest-version: "6.1.*" }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -59,7 +61,7 @@ jobs:
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
Expand Down Expand Up @@ -92,10 +94,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
Expand Down

0 comments on commit e82cf8e

Please sign in to comment.