2023-03-30 18:40:53 +00:00
|
|
|
name: checks
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linter-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
2023-03-30 21:04:10 +00:00
|
|
|
go-version: "1.19"
|
2023-03-30 18:40:53 +00:00
|
|
|
check-latest: true
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Run linter
|
|
|
|
run: go run build/ci.go lint
|