From e93d1d57246e1ae01516e8cbb9f2c7e79a5e1e1b Mon Sep 17 00:00:00 2001 From: Andrea Bizzotto Date: Thu, 12 May 2022 11:36:22 +0100 Subject: [PATCH] Add test workflow --- ecommerce_app/.github/workflows/tests.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ecommerce_app/.github/workflows/tests.yaml diff --git a/ecommerce_app/.github/workflows/tests.yaml b/ecommerce_app/.github/workflows/tests.yaml new file mode 100644 index 00000000..ab3381ea --- /dev/null +++ b/ecommerce_app/.github/workflows/tests.yaml @@ -0,0 +1,9 @@ +name: Run Tests +on: [push, workflow_dispatch] +jobs: + drive: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: subosito/flutter-action@v2 + - run: flutter test \ No newline at end of file