You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
name: Go |
|
|
|
on: |
|
push: |
|
branches: [ master ] |
|
pull_request: |
|
branches: [ master ] |
|
|
|
jobs: |
|
|
|
build: |
|
name: Build |
|
runs-on: ubuntu-latest |
|
steps: |
|
|
|
- name: Set up Go 1.x |
|
uses: actions/setup-go@v2 |
|
with: |
|
go-version: ^1.15 |
|
|
|
- name: Check out code into the Go module directory |
|
uses: actions/checkout@v2 |
|
|
|
- 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 -v . |
|
|
|
- name: Test |
|
run: go test -v . |
|
|
|
golangci: |
|
name: lint |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: golangci-lint |
|
uses: golangci/golangci-lint-action@v2 |
|
with: |
|
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. |
|
version: v1.29 |
|
|
|
# Optional: working directory, useful for monorepos |
|
# working-directory: somedir |
|
|
|
args: --disable-all -E bodyclose -E gosimple -E gosec -E govet -E ineffassign -E staticcheck -E structcheck -E typecheck -E varcheck -E errcheck -E golint -E gocritic |
|
|
|
# Optional: show only new issues if it's a pull request. The default value is `false`. |
|
# only-new-issues: true
|
|
|