From 2452bbab26bb2c3540ee23af132cd6379374e2dc Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 5 Jun 2021 18:05:30 +0200 Subject: [PATCH] Enable PyPy runs as well Switch the 'python-version' key to expanded, since it's too long now. Also enable fail-fast, as otherwise too much time is spent testing passing things. Note that pypy supports a smaller range of versions (which is in a way good, too many tests otherwise). --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f98e019..9c31ab2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,12 +7,20 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10-dev'] + python-version: + - '3.5' + - '3.6' + - '3.7' + - '3.8' + - '3.9' + - '3.10-dev' + - 'pypy-3.6' + - 'pypy-3.7' include: - os: ubuntu-18.04 python-version: '3.4' installTyping: ${{ true }} - fail-fast: false + fail-fast: true steps: - name: Checkout -- 2.39.2