Skip to content

False positive output in tox linter checks #35

False positive output in tox linter checks

False positive output in tox linter checks #35

Workflow file for this run

---
name: Run Tox linters checks
on:
push:
pull_request:
# Run the tox tests every 8 hours.
# This will help to identify faster if
# there is a CI failure related to a
# change in any dependency.
schedule:
- cron: '0 */8 * * *'
jobs:
tox:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install deps
run: python -m pip install tox
- name: Move to tox conf file and run tox
run: |
cd .github/workflows
python3 -m tox -- ../..