Some checks failed
Tests and linters / Lint (push) Failing after 11s
Tests and linters / Tests (push) Failing after 11s
Tests and linters / Staticcheck (push) Failing after 13s
Tests and linters / Run gofumpt (push) Failing after 13s
Tests and linters / Tests with -race (push) Failing after 16s
Tests and linters / gopls check (push) Failing after 16s
Vulncheck / Vulncheck (push) Successful in 32s
Pre-commit hooks / Pre-commit (push) Successful in 49s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
27 lines
488 B
YAML
27 lines
488 B
YAML
name: Vulncheck
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
vulncheck:
|
|
name: Vulncheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.23'
|
|
|
|
- name: Install govulncheck
|
|
run: go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
|
|
- name: Run govulncheck
|
|
run: govulncheck ./...
|