action: remove the py38 support in ci #321
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run Tox tests | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| tox: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python: 3.6 | |
| tox_env: py36-django2 | |
| - python: 3.8 | |
| tox_env: py38-django3 | |
| - python: 3.9 | |
| tox_env: py39-django4 | |
| - python: "3.10" | |
| tox_env: py310-django4 | |
| - python: "3.11" | |
| tox_env: py311-django5 | |
| - python: "3.12" | |
| tox_env: py312-django5 | |
| - python: "3.11" | |
| tox_env: py39-bandit # bandit doesn't care about python version | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - run: pip install tox | |
| - name: Run tox | |
| run: tox -e ${{ matrix.tox_env }} | |