Skip to content

Merge pull request #17 from andig/fix/races #10

Merge pull request #17 from andig/fix/races

Merge pull request #17 from andig/fix/races #10

Workflow file for this run

name: Push to repo
on: [push]
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: install golang
uses: actions/setup-go@v2
with:
go-version: '^1.16'
- name: build
run: go build
- name: test
run: go test
- name: lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
skip-go-installation: true