Skip to content

Commit

Permalink
create go-util-tour.yml
Browse files Browse the repository at this point in the history
添加github-actions
  • Loading branch information
Jeremy-boo authored Oct 22, 2020
1 parent c4a3e6b commit 8012b00
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/go-util-tour.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Go

on:
push:
branches: [ dev ]
pull_request:
branches: [ master ]

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ^1.14

- name: Check out code
uses: actions/checkout@v1

- name: Lint Go Code
run: |
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
go get -u golang.org/x/lint/golint
make lint:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ^1.14
- name: Check out code
uses: actions/checkout@v1

- name: Run Unit tests.
run: make test-coverage

- name: Upload Coverage report to CodeCov
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
build:
name: Build
runs-on: ubuntu-latest
needs: [lint,test]
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ^1.14

- name: Check out code
uses: actions/checkout@v1

- name: Build
run: make build

0 comments on commit 8012b00

Please sign in to comment.