From 73fa653ca368ecc7706eeefc12589c854d18e055 Mon Sep 17 00:00:00 2001 From: Maikel Rehl Date: Tue, 16 Jul 2024 19:44:04 +0200 Subject: [PATCH] Add run tests on push --- .github/workflows/integration.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 2c54236..e9e36bb 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -3,6 +3,20 @@ name: Integration Tests on: [ push ] jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: subosito/flutter-action@v2 + with: + flutter-version: '3.22.0' + channel: 'stable' + + - uses: actions/checkout@v4 + + - name: Run tests + run: flutter test + build: runs-on: ubuntu-latest