Skip to content

Reduce CI load for tests that don't need to be run on every commit #49

Reduce CI load for tests that don't need to be run on every commit

Reduce CI load for tests that don't need to be run on every commit #49

Workflow file for this run

name: Unit tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- run: tox -e unit