2021-05-03 21:55:51 +00:00
|
|
|
name: gofmt
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/gofmt.yml'
|
|
|
|
- '.github/workflows/gofmt.sh'
|
|
|
|
- '**.go'
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
gofmt:
|
|
|
|
name: Run gofmt
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-25 15:55:16 +00:00
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
show-progress: false
|
2021-05-03 21:55:51 +00:00
|
|
|
|
2024-06-20 19:24:00 +00:00
|
|
|
- name: Set up Go 1.22
|
2024-10-25 15:55:16 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-05-03 21:55:51 +00:00
|
|
|
with:
|
2024-06-20 19:24:00 +00:00
|
|
|
go-version: "1.22"
|
2024-10-25 15:55:16 +00:00
|
|
|
cache-dependency-path: nebula/go.sum
|
2021-05-03 21:55:51 +00:00
|
|
|
|
|
|
|
- name: Install goimports
|
|
|
|
working-directory: nebula
|
|
|
|
run: |
|
|
|
|
go get golang.org/x/tools/cmd/goimports
|
|
|
|
go build golang.org/x/tools/cmd/goimports
|
|
|
|
|
|
|
|
- name: gofmt
|
2023-05-12 17:42:58 +00:00
|
|
|
run: $GITHUB_WORKSPACE/.github/workflows/gofmt.sh
|