Files
Addlicense/.github/workflows/linter.yaml
Will Norris 13e73a7f8f chore: bump action versions
I think this should fix the unicode import error in https://github.com/google/addlicense/actions/runs/2198105433
2022-04-21 16:21:41 -07:00

22 lines
417 B
YAML

on: [push, pull_request]
name: linter
jobs:
lint:
strategy:
matrix:
go-version: [1.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45