Skip to content

feat(lint): add golangci-lint #170

feat(lint): add golangci-lint

feat(lint): add golangci-lint #170

Workflow file for this run

name: Go
on:
push:
branches:
- main
- lint
pull_request:
branches:
- main
- lint
jobs:
ubuntu-test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.19
- name: Run golangci-lint
uses: golangci/[email protected]
- name: Run Go Fmt
run: |
files=$(go fmt ./...)
if [ -n "$files" ]; then
echo "Please run gofmt on these files ..."
echo "$files"
exit 1
fi
- name: Build
run: go build -v
- name: Run Unit Test
run: go test -count 1 -v ./...
windows-test:
runs-on: windows-latest
steps:
- uses: actions/[email protected]
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.19
- name: Run golangci-lint
uses: golangci/[email protected]
- name: Build
run: go build -v
- name: Run Unit Test
run: go test -count 1 -v ./...