X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.github%2Fworkflows%2Frun-tests.yaml;h=a4151cdfd7babd89e6e956d56db57c1a62bfcec7;hb=8376680e49691ff30871a1fa3d49a6b0a2e7fa2b;hp=1baf0061c82f089f3bd9ffc3be55dc2a0a0dc15a;hpb=bbfcf35cc50cc969dfc7abd5daed7fd496e4d269;p=mimedecode.git diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 1baf006..a4151cd 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -6,8 +6,9 @@ jobs: run-tests: strategy: + fail-fast: false 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 @@ -17,12 +18,17 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Cache pip + uses: actions/cache@v2 + with: + # This path is specific to Linux/Unix + path: ~/.cache/pip + key: ${{ runner.os }}-pip - name: Install dependencies run: | python --version python -m pip install --upgrade "pip<21.0" "setuptools<45" wheel pip --version - python -m pip --version - python -m pip install --upgrade virtualenv tox tox-gh-actions + pip install --upgrade virtualenv tox tox-gh-actions - name: Run tox targets for ${{ matrix.python-version }} - run: python -m tox + run: tox