]> git.phdru.name Git - mimedecode.git/blobdiff - .github/workflows/run-tests.yaml
Tests, CI: Run tests with Python 3.11
[mimedecode.git] / .github / workflows / run-tests.yaml
index d89de764c84a2d50bfcd18b34e75037d113bcd91..3addbae9024a38e056078da27a8a4d8a7eb48847 100644 (file)
@@ -6,9 +6,8 @@ jobs:
   run-tests:
 
     strategy:
-      fail-fast: false
       matrix:
-        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-2.7"]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-2.7"]
 
     name: Python ${{ matrix.python-version }}
     runs-on: ubuntu-latest
@@ -17,11 +16,11 @@ jobs:
 
       # 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
@@ -36,4 +35,6 @@ jobs:
           pip install --upgrade virtualenv tox tox-gh-actions
 
       - name: Run tox targets for ${{ matrix.python-version }}
-        run: tox
+        run: |
+          tox --version
+          tox