]> git.phdru.name Git - sqlconvert.git/blobdiff - .github/workflows/run-tests.yaml
CI(GHActions): Show `tox`/`pytest` version
[sqlconvert.git] / .github / workflows / run-tests.yaml
index 22d05e6d8ccf0fa8602c97959863d1774363fa80..a8ac5d5ecb445412146cb5f9525cf1c7a5f7adf2 100644 (file)
@@ -8,7 +8,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest]
-        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", "3.10"]
         include:
         - os: ubuntu-latest
           os-name: Linux
@@ -22,6 +22,7 @@ jobs:
 
     steps:
 
+      # Setup PostgreSQL
       - uses: ankane/setup-postgres@v1
       - name: Setup Postgres user
         run: |
@@ -32,6 +33,7 @@ jobs:
           psql --command="CREATE USER runner CREATEDB PASSWORD 'test'"
         if: ${{ runner.os == 'Windows' }}
 
+      # Setup Python/pip
       - uses: actions/checkout@v2
       - uses: actions/setup-python@v2
         with:
@@ -41,10 +43,12 @@ jobs:
         with:
           path: ${{ matrix.pip-cache-path }}
           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
       - name: Set TOXENV
@@ -64,7 +68,9 @@ jobs:
             f.write('TOXENV=' + toxenv + '\n')
             f.write('PGPASSWORD=test\n')
         shell: python
+
       - name: Run tox
         run: |
           python -c "import os; print(os.environ['TOXENV'])"
+          tox --version
           tox