2021-05-03 16:55:51 -05: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 11:55:16 -04:00
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
show-progress: false
|
2021-05-03 16:55:51 -05:00
|
|
|
|
2024-06-20 15:24:00 -04:00
|
|
|
- name: Set up Go 1.22
|
2024-10-25 11:55:16 -04:00
|
|
|
uses: actions/setup-go@v5
|
2021-05-03 16:55:51 -05:00
|
|
|
with:
|
2025-02-13 14:48:44 -06:00
|
|
|
go-version: '1.22'
|
2024-10-25 11:55:16 -04:00
|
|
|
cache-dependency-path: nebula/go.sum
|
2021-05-03 16:55:51 -05: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 12:42:58 -05:00
|
|
|
run: $GITHUB_WORKSPACE/.github/workflows/gofmt.sh
|