id-validator/.github/workflows/golangci-lint.yml
2021-01-12 16:26:52 +08:00

20 lines
374 B
YAML

name: Golangci Lint
on:
push:
branches: [main]
pull_request:
env:
GOPROXY: "https://proxy.golang.org"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# - name: Init Go modules
# run: go mod init guanguans/id-validator
- name: Run golangci-lint
uses: actions-contrib/golangci-lint@v1