Skip to content

Commit

Permalink
included integration tests in test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
JannesNebendahl committed Jul 30, 2024
1 parent 0b8620a commit aa7156b
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ "master" ]

jobs:
testing:
unittesting:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -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

0 comments on commit aa7156b

Please sign in to comment.