Skip to content

Add static analysis in github workflow #2

Add static analysis in github workflow

Add static analysis in github workflow #2

Workflow file for this run

name: check
on: [push, pull_request]
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test -v -cover ./...