ci: add govulncheck step #5
This file contains 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: tests | |
on: | |
push: | |
branches: ['*'] | |
paths-ignore: ['**.md'] | |
pull_request: | |
types: [opened, synchronize, labeled, reopened, synchronize, ready_for_review] | |
paths-ignore: ['**.md'] | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
go-version: [1.21.x, 1.20.x] | |
os: [ubuntu-latest, macos-latest] | |
include: | |
# include windows-latest for latest go version only | |
# windows execution is quiet slow on Github runners. | |
- go-version: 1.21.x | |
os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check go modules | |
run: go mod tidy && git diff -s --exit-code go.sum | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
args: -v --timeout=5m --issues-exit-code=0 | |
- name: Run govulncheck | |
# do not prevent ci to succeed. | |
continue-on-error: true | |
uses: golang/govulncheck-action@v1 | |
with: | |
go-package: ./... | |
- name: Run Tests | |
run: make test-cover | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |