diff --git a/.github/workflows/tests-amd64.yml b/.github/workflows/tests-amd64.yml index 57953ad3..a7144b6a 100644 --- a/.github/workflows/tests-amd64.yml +++ b/.github/workflows/tests-amd64.yml @@ -19,12 +19,6 @@ jobs: - name: "Pypy 2.7" python-version: 'pypy-2.7' toxenv: 'pypy' - - name: "Python 3.6" - python-version: '3.6' - toxenv: 'py36' - - name: "Pypy 3.6" - python-version: 'pypy-3.6' - toxenv: 'pypy3' - name: "Python 3.7" python-version: '3.7' toxenv: 'py37' @@ -34,12 +28,12 @@ jobs: - name: "Python 3.8" python-version: '3.8' toxenv: 'py38' - - name: "Python 3.9-pyhash" - python-version: '3.9' - toxenv: 'py39-pyhash' - name: "Python 3.9" python-version: '3.9' toxenv: 'py39' + - name: "Python 3.10" + python-version: '3.10' + toxenv: 'py310' steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -54,22 +48,21 @@ jobs: - name: Tests with tox env: TOXENV: ${{ matrix.toxenv }} - TOX_SKIP_ENV: py39\-pyhash run: | tox - name: Linting - if: ${{ matrix.python-version==3.9 }} + if: ${{ matrix.python-version==3.10 }} env: TOXENV: lint run: | tox - name: Run Codecov - if: ${{ matrix.python-version==3.9 }} + if: ${{ matrix.python-version==3.10 }} env: TOXENV: lint run: | pip install codecov codecov - name: Upload coverage to Codecov - if: ${{ matrix.python-version==3.9 }} + if: ${{ matrix.python-version==3.10 }} uses: codecov/codecov-action@v1