Merge pull request #230 from numtide/missing-some-events #196
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: Build main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**/*.md" | |
| - "**/*.txt" | |
| permissions: | |
| contents: write | |
| packages: write | |
| security-events: write | |
| jobs: | |
| build: | |
| name: Build | |
| uses: ./.github/workflows/_reusable-build-changed.yaml | |
| run: | |
| uses: ./.github/workflows/build-and-release.yaml | |
| with: | |
| push-container-image: true | |
| coverage: | |
| name: Coverage | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| uses: ./.github/workflows/_reusable-test-coverage.yaml | |
| with: | |
| COVERAGE_THRESHOLD: 0 # Because there is no test, setting threshold to 0 |