php-fpm-exporter/.github/workflows/go.yml
2020-03-03 21:47:07 +11:00

23 lines
509 B
YAML

name: Go
on: [push]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.7
- name: Lint
run: golangci-lint run