Skip to content

Fixed lint errors. Made CI run on PRs #14

Fixed lint errors. Made CI run on PRs

Fixed lint errors. Made CI run on PRs #14

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: CI
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