ci: add go workflow

This commit is contained in:
Sumner Evans 2022-01-27 09:52:00 -07:00
parent b3e15cc843
commit 3a4b118956
No known key found for this signature in database
GPG key ID: 8904527AB50022FD

29
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: Go
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [1.17]
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install goimports
run: |
go install golang.org/x/tools/cmd/goimports@latest
export PATH="$HOME/go/bin:$PATH"
- name: Install pre-commit
run: pip install pre-commit
- name: Lint
run: pre-commit run -a