...

Text file src/github.com/google/certificate-transparency-go/.github/workflows/golangci-lint.yml

Documentation: github.com/google/certificate-transparency-go/.github/workflows

     1name: golangci-lint
     2
     3on:
     4  push:
     5  pull_request:
     6
     7permissions:
     8  contents: read
     9
    10jobs:
    11  golangci:
    12    name: lint
    13    runs-on: ubuntu-latest
    14    steps:
    15      - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
    16      - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
    17        with:
    18          go-version: "1.21"
    19      - name: golangci-lint
    20        uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
    21        with:
    22          version: v1.55.1
    23          args: --timeout=5m

View as plain text