Skip to content

Add lint step

Add lint step #31

Workflow file for this run

name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16'
- run: make install-tools
- run: make
- run: make check COVERAGE=1
- run: make lint