From 0520470f46661f99c9019a717a1ce480c2ac4007 Mon Sep 17 00:00:00 2001 From: "Neevash Ramdial (Nash)" Date: Wed, 2 Dec 2020 12:24:54 -0400 Subject: [PATCH] Add dart analyser action (#163) * Add dart analyser action * Update flutter-analyze.yml --- .github/workflows/flutter-analyze.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..dc65c8bb --- /dev/null +++ b/.github/workflows/flutter-analyze.yml @@ -0,0 +1,20 @@ +name: Flutter Analyze +on: + push: + branches: + - master + + pull_request: + branches: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: subosito/flutter-action@v1 + with: + channel: 'beta' + - run: flutter pub get + - run: flutter analyze