diff --git a/.github/workflows/flutter-format.yml b/.github/workflows/flutter-format.yml new file mode 100644 index 0000000..1424f38 --- /dev/null +++ b/.github/workflows/flutter-format.yml @@ -0,0 +1,17 @@ +name: Flutter Check Format + +on: + pull_request: {} + push: {} + +jobs: + release: + name: Build + runs-on: ubuntu-latest + steps: + - name: Setup Flutter + uses: subosito/flutter-action@v1 + with: + channel: stable + - name: Check Dart Format + run: dart format --set-exit-if-changed . \ No newline at end of file