Skip to content

tidy

tidy #72

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/[email protected]
with:
go-version: 1.20
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: submodule
run: git submodule update --init --recursive
# Check the format of code
- name: Check code formatting using gofmt
uses: Jerome1337/[email protected]
- name: Static code check
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go vet $(go list ./...)
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build
- name: CodeCov
run: |
GO111MODULE=on && go test $(go list ./...) -coverprofile=coverage.txt -covermode=atomic
if [ -f coverage.txt ]; then
bash <(curl -s https://codecov.io/bash)
fi