]> git.phdru.name Git - mimedecode.git/blobdiff - .github/workflows/run-tests.yaml
Tests,CI: PyPy3
[mimedecode.git] / .github / workflows / run-tests.yaml
index a4151cdfd7babd89e6e956d56db57c1a62bfcec7..b62756aaa383a89d0b5d6defad0fe7a3cd7221b9 100644 (file)
@@ -6,29 +6,35 @@ jobs:
   run-tests:
 
     strategy:
-      fail-fast: false
       matrix:
-        python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 'pypy-2.7']
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-2.7", "pypy-3.7"]
 
     name: Python ${{ matrix.python-version }}
     runs-on: ubuntu-latest
 
     steps:
+
+      # Setup Python/pip
       - uses: actions/checkout@v2
-      - uses: actions/setup-python@v2
+      - uses: actions/setup-python@v4
         with:
           python-version: ${{ matrix.python-version }}
       - name: Cache pip
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           # This path is specific to Linux/Unix
           path: ~/.cache/pip
           key: ${{ runner.os }}-pip
+
+      # Setup tox
       - name: Install dependencies
         run: |
           python --version
-          python -m pip install --upgrade "pip<21.0" "setuptools<45" wheel
+          python -m pip install --upgrade pip setuptools wheel
           pip --version
           pip install --upgrade virtualenv tox tox-gh-actions
+
       - name: Run tox targets for ${{ matrix.python-version }}
-        run: tox
+        run: |
+          tox --version
+          tox