You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test-linux:
|
|
name: Linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.16
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get dependencies
|
|
run: |
|
|
go get -v -t -d ./...
|
|
|
|
- name: Lint
|
|
run: |
|
|
go vet -stdmethods=false $(go list ./...)
|
|
go install mvdan.cc/gofumpt@latest
|
|
test -z "$(gofumpt -l -extra .)" || echo "Please run 'gofumpt -l -w -extra .'"
|
|
|
|
- name: Test
|
|
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
- name: Codecov
|
|
uses: codecov/codecov-action@v2
|
|
|
|
test-win:
|
|
name: Windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.16
|
|
|
|
- name: Checkout codebase
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Test
|
|
run: |
|
|
go mod verify
|
|
go mod download
|
|
go test -v -race ./...
|
|
cd tools/goctl && go build -v goctl.go
|