mobile_nebula/.github/workflows/gofmt.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
721 B
YAML
Raw Normal View History

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:
- name: Set up Go 1.22
2023-05-12 17:42:58 +00:00
uses: actions/setup-go@v4
2021-05-03 21:55:51 +00:00
with:
go-version: "1.22"
2021-05-03 21:55:51 +00:00
id: go
- name: Check out code into the Go module directory
2023-05-12 17:42:58 +00:00
uses: actions/checkout@v3
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