Release v0.8.2 #91
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' #avoid duplicates: run the PR, not the push | |
| tags-ignore: | |
| - 'v*' #avoid rerun existing commit on release | |
| pull_request: | |
| env: | |
| CI: true | |
| jobs: | |
| lint: | |
| uses: NicTool/.github/.github/workflows/lint.yml@main | |
| coverage: | |
| uses: NicTool/.github/.github/workflows/coverage.yml@main | |
| secrets: inherit | |
| test: | |
| needs: lint | |
| uses: NicTool/.github/.github/workflows/test.yml@main | |
| secrets: inherit |