Files
goreportcard/.github/workflows/go.yml
2022-03-22 11:56:45 +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.18
- name: Install
run: make install
- name: Lint
run: make lint
- name: Test
run: go test ./...