rename and update
This commit is contained in:
parent
7b607b0a87
commit
47e285012a
1 changed files with 7 additions and 6 deletions
|
@ -1,13 +1,11 @@
|
||||||
name: go
|
name: vet-and-build
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: build
|
name: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: set up
|
||||||
- name: set up go
|
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.13
|
go-version: 1.13
|
||||||
|
@ -19,5 +17,8 @@ jobs:
|
||||||
- name: deps
|
- name: deps
|
||||||
run: go get -v -t -d ./...
|
run: go get -v -t -d ./...
|
||||||
|
|
||||||
- name: vet and build
|
- name: vet
|
||||||
run: go vet ./... && go build
|
run: go vet ./...
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
run: go build
|
Loading…
Reference in a new issue