mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-18 19:27:05 +00:00
301dc6c394
These are a few more minor updated dependencies, mostly in go.mod. I also see that the pubspec now has an update to the flutter version, which should have happened previously along with the flutter upgrade, but it didn't for whatever reason.
29 lines
628 B
YAML
29 lines
628 B
YAML
name: Flutter format
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/flutterfmt.yml'
|
|
- '.github/workflows/flutterfmt.sh'
|
|
- '**.dart'
|
|
jobs:
|
|
|
|
gofmt:
|
|
name: Run flutter format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Install flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: '3.27.0'
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Check formating
|
|
run: dart format -l120 lib/ --set-exit-if-changed --suppress-analytics --output none
|