1.1.0 #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run checks | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
check: | |
name: Check with `su6 all` | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pip' # caching pip dependencies | |
- run: pip install su6[all] .[dev] | |
- run: su6 all --coverage 100 --no-stop-after-first-failure |