Skip to content

Fixed lint errors. Made CI run on PRs #12

Fixed lint errors. Made CI run on PRs

Fixed lint errors. Made CI run on PRs #12

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- run: go get -v -t -d ./...
- run: make lint
- run: make test
- run: make build