diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fd2cbde..969ff99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7,3.9] + python: [2.7, 3.9, 3.11] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v2 + uses: MatteoH2O1999/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Install Dependencies @@ -29,4 +29,4 @@ jobs: run: | python -m pip install coveralls coveralls --service=github - if: ${{ matrix.python == '3.9' }} \ No newline at end of file + if: ${{ matrix.python == '2.7' }} \ No newline at end of file diff --git a/tox.ini b/tox.ini index 891674f..b40d925 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,39},qa +envlist = py,qa skip_missing_interpreters = True [testenv]