Skip to content

ci(coverage): gate PRs on 100% patch coverage + 95% project floor (#13) #23

ci(coverage): gate PRs on 100% patch coverage + 95% project floor (#13)

ci(coverage): gate PRs on 100% patch coverage + 95% project floor (#13) #23

Workflow file for this run

name: govulncheck
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
schedule:
- cron: '0 6 * * *'
permissions:
contents: read
jobs:
govulncheck:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout this repo
uses: actions/checkout@v4
with:
path: cli
- uses: actions/setup-go@v5
with:
go-version-file: cli/go.mod
check-latest: true
- run: go install golang.org/x/vuln/cmd/govulncheck@latest
- working-directory: cli
run: govulncheck ./...