Browse Source

Merge pull request #10 from localleon/actions

Adding Github Actions CI
pull/13/head
Alex 3 years ago committed by GitHub
parent
commit
032c41ea20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 54
      .github/workflows/go.yml

54
.github/workflows/go.yml

@ -0,0 +1,54 @@ @@ -0,0 +1,54 @@
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
Loading…
Cancel
Save