...

Text file src/github.com/lestrrat-go/option/.github/workflows/lint.yml

Documentation: github.com/lestrrat-go/option/.github/workflows

     1name: lint
     2on: [push]
     3jobs:
     4  golangci:
     5    name: lint
     6    runs-on: ubuntu-latest
     7    steps:
     8      - uses: actions/checkout@v3
     9      - uses: actions/setup-go@v3
    10        with:
    11          go-version: 1.19
    12          check-latest: true
    13      - uses: golangci/golangci-lint-action@v3
    14        with:
    15          version: v1.49.0
    16      - name: Run go vet
    17        run: |
    18          go vet ./...

View as plain text