From d04b4af6325c0a40993a39295698123b81485062 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 5 Jun 2025 21:19:09 -0700 Subject: [PATCH] Add CI checks --- .github/workflows/flutter-analyze.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/flutter-analyze.yml diff --git a/.github/workflows/flutter-analyze.yml b/.github/workflows/flutter-analyze.yml new file mode 100644 index 0000000..3ac0ce8 --- /dev/null +++ b/.github/workflows/flutter-analyze.yml @@ -0,0 +1,16 @@ +name: Flutter Analyze + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + analyze: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 + - run: flutter pub get + - run: flutter analyze