summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2020-08-13 23:54:46 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2020-08-14 00:05:00 +0300
commit69fc34c7f645a3601de48bb046dae36902f06bfa (patch)
treeb79936e2724a9f303273d952f8d37e20d19d05bb
parenta668885c71043a2f54dd34013ce52ac25446d5b3 (diff)
downloadwheel-git-69fc34c7f645a3601de48bb046dae36902f06bfa.tar.gz
Added PyPy2 to the test matrix
Let's test against PyPy2 at least until v1.0.
-rw-r--r--.github/workflows/codeqa-test.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml
index a84594b..65f0d20 100644
--- a/.github/workflows/codeqa-test.yml
+++ b/.github/workflows/codeqa-test.yml
@@ -22,19 +22,23 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
- python-version: [2.7, 3.5, 3.6, 3.8, pypy3]
+ python-version: [2.7, 3.5, 3.6, 3.8, pypy, pypy3]
exclude:
- os: ubuntu-latest
python-version: 3.6
- os: macos-latest
python-version: 3.6
- os: macos-latest
+ python-version: pypy
+ - os: macos-latest
python-version: pypy3
- os: windows-latest
python-version: 2.7
- os: windows-latest
python-version: 3.5
- os: windows-latest
+ python-version: pypy
+ - os: windows-latest
python-version: pypy3
runs-on: ${{ matrix.os }}
steps: