Skip to content

First commit

First commit #1

Workflow file for this run

name: Main CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/[email protected]
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Linting
run: make lint
- name: govulncheck
run: govulncheck ./...
- name: Testing
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}