From b851cef07e33068c826023ccac134b03d1421205 Mon Sep 17 00:00:00 2001 From: sunboyy Date: Fri, 15 Jan 2021 22:29:46 +0700 Subject: [PATCH] Add GitHub action for Go project --- .github/workflows/go.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..898fa10 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,32 @@ +name: Go + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.15 + + - name: Install dependencies + run: go get -u golang.org/x/lint/golint + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... + + - name: Vet & Lint + run: | + go vet ./... + golint ./...