Skip to content

Commit

Permalink
feat(su6): add github workflow with checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvandernoord committed May 31, 2023
1 parent de33d20 commit d462387
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/su6.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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]
- run: su6 all --coverage 100

0 comments on commit d462387

Please sign in to comment.