diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09cd22b9f10..8d07adb04d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,13 @@ jobs: os: ubuntu-latest python-version: 3.9 toxenv: verify-install-requires + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - run: pip install tox + - run: tox -e ${{ matrix.toxenv }} quick_test: name: test Python ${{ matrix.python-version }}, tox testenv ${{ matrix.toxenv }}, ${{ matrix.os }} needs: [ checks ]