]> git.phdru.name Git - mimedecode.git/blobdiff - .github/workflows/run-tests.yaml
CI(GHActions): Set `TOXENV`; remove `tox-gh-actions`
[mimedecode.git] / .github / workflows / run-tests.yaml
index 4bf76a0bb6873fd76eea0e220fd41bf82f5045fa..4db3d8e3fdfd19450016c426111e6cdb194216a4 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, '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
@@ -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
@@ -31,9 +30,24 @@ jobs:
       - 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
+          pip install --upgrade virtualenv tox
+      - name: Set TOXENV
+        run: |
+          import os, sys
+          if hasattr(sys, 'pypy_version_info'):
+            toxenv = 'pypy'
+          else:
+            pyver = '%d%d' % tuple(sys.version_info[:2])
+            toxenv = 'py%s' % pyver
+          with open(os.environ['GITHUB_ENV'], 'a') as f:
+            f.write('TOXENV=' + toxenv + '\n')
+        shell: python
+
 
       - name: Run tox targets for ${{ matrix.python-version }}
-        run: tox
+        run: |
+          python -c "import os; print(os.environ['TOXENV'])"
+          tox --version
+          tox