From 8ed9470ddc19eb62e6ce449e237e618d0ec1f38a Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 29 Aug 2021 17:53:44 +0300 Subject: [PATCH] CI(GHActions): Add PyPy --- .github/workflows/run-tests.yaml | 2 +- tox.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index de8fd92..efd8361 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 'pypy-2.7'] name: Python ${{ matrix.python-version }} runs-on: ubuntu-latest diff --git a/tox.ini b/tox.ini index ced00e3..d428fda 100644 --- a/tox.ini +++ b/tox.ini @@ -33,3 +33,4 @@ python = 3.7: py37 3.8: py38 3.9: py39 + pypy-2.7: pypy -- 2.39.2