diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4db9fb0220..ea01bbcb68 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,6 +1,6 @@ --- name: "Lint" -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy push: branches: - "!dependabot/*" @@ -11,6 +11,17 @@ on: # yamllint disable-line rule:truthy types: - "checks_requested" jobs: + go-license-check: + name: "License Check" + runs-on: "buildjet-4vcpu-ubuntu-2204" + steps: + - uses: "actions/checkout@v4" + - uses: "authzed/actions/setup-go@main" + - name: "Check Licenses" + uses: "authzed/actions/go-license-check@main" + with: + ignore: "buf.build" # Has no license information + go-lint: name: "Lint Go" runs-on: "buildjet-4vcpu-ubuntu-2204"