From aa7156bc6fbfeafc3b6e6ebff0915e2e469801e8 Mon Sep 17 00:00:00 2001 From: "YOGA-7\\Jannes" Date: Tue, 30 Jul 2024 10:34:08 +0200 Subject: [PATCH] included integration tests in test pipeline --- .github/workflows/tests.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7ed03b2..b07ec4d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ on: branches: [ "master" ] jobs: - testing: + unittesting: runs-on: ubuntu-latest steps: @@ -41,3 +41,21 @@ jobs: name: codecov-umbrella fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} + + integration_testing: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Install Dart + uses: dart-lang/setup-dart@v1 + with: + sdk: 'stable' + + - name: Install dependencies + run: dart pub get + + - name: Run integration tests + run: dart test integration_test