Skip to content

Merge branch 'master' into remove_code #987

Merge branch 'master' into remove_code

Merge branch 'master' into remove_code #987

# https://github.com/golangci/golangci-lint
name: golang_lint_and_test
on: [push, pull_request]
jobs:
golang_lint_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- run: go version
- uses: golangci/golangci-lint-action@v2
with:
version: latest
args: -E gofmt
- run: go test ./...