forked from core/mobile_nebula
28 lines
551 B
YAML
28 lines
551 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.3.5'
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: flutter format
|
|
run: $GITHUB_WORKSPACE/.github/workflows/flutterfmt.sh
|