Make test-with-coverage.yml workflow run in push events to master branch #142
Workflow file for this run
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: govulncheck | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| govulncheck: | |
| name: govulncheck | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Run govulncheck | |
| uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master | |
| with: | |
| config: .govulncheck.yaml | |
| debug: true # optional (default = false) |