Skip to content

Adapt GitHub action #53

Adapt GitHub action

Adapt GitHub action #53

Workflow file for this run

name: Test DBUtils using tox
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py
- if: matrix.python == 3.10
run: TOXENV=ruff,manifest,docs,spell tox