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]
|
||||
jobs:
|
||||
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: set up go
|
||||
- name: set up
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: 1.13
|
||||
|
@ -19,5 +17,8 @@ jobs:
|
|||
- name: deps
|
||||
run: go get -v -t -d ./...
|
||||
|
||||
- name: vet and build
|
||||
run: go vet ./... && go build
|
||||
- name: vet
|
||||
run: go vet ./...
|
||||
|
||||
- name: build
|
||||
run: go build
|
Loading…
Reference in a new issue