Skip to content

Report changes from make fmt as failurea #259

Report changes from make fmt as failurea

Report changes from make fmt as failurea #259

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- README.md
- .gitignore
merge_group:
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: recursive
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version-file: './.go-version'
check-latest: true
- name: Format check
run: make fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0
with:
version: v2.12
args: --build-tags testonly
- name: Check generated code
run: make generate