diff --git a/.github/workflows/quality-assurance.yaml b/.github/workflows/quality-assurance.yaml index e6bb882..43ed7be 100644 --- a/.github/workflows/quality-assurance.yaml +++ b/.github/workflows/quality-assurance.yaml @@ -10,12 +10,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [ '3.5', '3.6', '3.7', '3.8' ] + python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 with: python-version: ${{ matrix.python }} - run: python -m pip install --upgrade pipenv wheel + - run: pipenv --python ${{ matrix.python }} - run: pipenv install - run: pipenv run "pytest"