reg/.github/workflows/make-all.yml
Jess Frazelle 6d5526bfa4
update to github actiions
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
2019-11-19 22:41:52 -08:00

14 lines
376 B
YAML

on: push
name: make all
jobs:
makeall:
name: make all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: make all
uses: docker://golang:latest
with:
entrypoint: bash
args: -c "go get honnef.co/go/tools/cmd/staticcheck && go get golang.org/x/lint/golint && make fmt lint staticcheck vet install"