Skip to content

Commit

Permalink
Add tests for PyPy 3.9 and update GitHub actions (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Jan 19, 2023
1 parent 3ffda7f commit b33088e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cache/pip
Expand All @@ -30,7 +30,7 @@ jobs:
lint-v1-
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
"3.9",
"3.10",
"3.11",
"pypy-3.7",
"pypy-3.9",
]
pytest-version: [
"6.0.*",
Expand All @@ -46,10 +46,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 +59,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 +92,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 b33088e

Please sign in to comment.