From 36d45165c27227b5ecca07e3bba7ee3f09058472 Mon Sep 17 00:00:00 2001 From: andoriyaprashant Date: Wed, 12 Mar 2025 11:18:58 +0530 Subject: [PATCH] Added Flutter Ci --- .github/workflows/flutter-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/flutter-ci.yml diff --git a/.github/workflows/flutter-ci.yml b/.github/workflows/flutter-ci.yml new file mode 100644 index 00000000..348e7445 --- /dev/null +++ b/.github/workflows/flutter-ci.yml @@ -0,0 +1,25 @@ +name: Flutter CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: '3.27.0' + + - name: Install dependencies + run: flutter pub get + + - name: Run tests + run: flutter test \ No newline at end of file