From 872f9e0e840f8dbbadf4885832036f0005defe21 Mon Sep 17 00:00:00 2001 From: Satya Achanta Date: Fri, 26 Apr 2024 23:08:25 -0400 Subject: [PATCH] Add github actions file --- .github/workflows/workflow.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..69ba2dc --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,21 @@ +name: Run tests + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Flutter + uses: subosito/flutter-action@v1 + with: + flutter-version: '2.0.6' + + - name: Install dependencies + run: flutter pub get + + - name: Run tests + run: flutter test \ No newline at end of file