From ae5f19a599064d5e0eb37eb28e81650d5f73bdaa Mon Sep 17 00:00:00 2001 From: Bram Borggreve Date: Wed, 14 Sep 2022 12:56:08 +0100 Subject: [PATCH] feat: add GitHub Workflow to run tests on CI --- .github/workflows/flutter-test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/flutter-test.yml diff --git a/.github/workflows/flutter-test.yml b/.github/workflows/flutter-test.yml new file mode 100644 index 0000000..414cc42 --- /dev/null +++ b/.github/workflows/flutter-test.yml @@ -0,0 +1,13 @@ +name: flutter-test + +on: + pull_request: + push: + +jobs: + main: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v1 + - uses: subosito/flutter-action@v1 + - run: flutter test