1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-02 16:58:30 +00:00

github-actions: Fix pypy versions

This commit is contained in:
Unrud 2022-07-03 12:33:07 +02:00
parent d087a1278b
commit b41d90cf9f

View file

@ -6,14 +6,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy3.7, pypy3.8, pypy3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy-3.7, pypy-3.8, pypy-3.9]
exclude:
- os: windows-latest
python-version: pypy3.7
python-version: pypy-3.7
- os: windows-latest
python-version: pypy3.8
python-version: pypy-3.8
- os: windows-latest
python-version: pypy3.9
python-version: pypy-3.9
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2