Files
goreportcard/.github/workflows/go.yml
2021-04-25 21:50:06 +09:00

25 lines
341 B
YAML

name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Install
run: make install
- name: Lint
run: make lint
- name: Test
run: go test ./...