Skip to content

Clearer error reporting #43

Clearer error reporting

Clearer error reporting #43

Workflow file for this run

# adapted from https://github.com/tox-dev/tox-gh
name: tox
on:
push:
branches-ignore:
- docs
pull_request:
schedule:
# run every monday @ 8am
- cron: "0 8 * * 1"
concurrency:
group: tox-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.11"
- "3.7"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- name: Install tox
run: python -m pip install tox-gh>=1.2
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install