Skip to content

Tox

Tox #331

Workflow file for this run

---
name: Tox
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Run tox nightly
schedule:
- cron: '0 2 * * *'
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
python -m tox -- ../..