mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-15 16:25:26 +00:00
* Upgrade to Flutter 3.29.0 * Update cocoapods lock file * Update .gitignore * Add analysis_options.yaml to set line length default * Bump required Dart to 3.7.0 as well Restrict the dart version to max 3.6.0 * Disable formatting to allow merging with formatting that needs to happen
35 lines
797 B
YAML
35 lines
797 B
YAML
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: Check out code into the Go module directory
|
|
uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Set up Go 1.22
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.22'
|
|
cache-dependency-path: nebula/go.sum
|
|
|
|
- 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
|
|
run: $GITHUB_WORKSPACE/.github/workflows/gofmt.sh
|