Skip to content

Check for print statements #51

Check for print statements

Check for print statements #51

Workflow file for this run

name: Test DBUtils using tox
on: [push, pull_request]
jobs:
build:
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