Skip to content

[wip] dbaas: external integrations #97

[wip] dbaas: external integrations

[wip] dbaas: external integrations #97

Workflow file for this run

name: govulncheck
on:
pull_request:
jobs:
govulncheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash