Skip to content

feat: solve "toDog" false positive #123

feat: solve "toDog" false positive

feat: solve "toDog" false positive #123

Workflow file for this run

name: Check
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
check:
runs-on: ubuntu-latest
name: test with ${{ matrix.py }}
strategy:
fail-fast: false
matrix:
py:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: ${{ matrix.py }}
- name: Install tox
run: python -m pip install -r .github/requirements.txt
- name: Run test suite
run: tox -e py