Skip to content

Support Python 3.14 and minor updates #65

Support Python 3.14 and minor updates

Support Python 3.14 and minor updates #65

Workflow file for this run

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