From 3126aa430576b973f4f9245752a8de4a60672f9b Mon Sep 17 00:00:00 2001 From: Denys Vitali Date: Fri, 5 Apr 2024 16:07:02 +0200 Subject: [PATCH] ci: add flutter format check --- .github/workflows/flutter-format.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/flutter-format.yml 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