From 859b2a56df418bff7dce405c798380260bed53fd Mon Sep 17 00:00:00 2001 From: Steve Hamblett Date: Fri, 14 Jun 2024 13:11:28 +0100 Subject: [PATCH] Split into individual tests --- .github/workflows/ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96997a1..5c29769 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,10 +48,15 @@ jobs: docker ps -a - name: Run tests - run: dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_test.dart; - dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario1_test.dart; - dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario2_test.dart; - dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario3_test.dart; + shell: bash + run: | + dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_test.dart + | + dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario1_test.dart + | + dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario2_test.dart + | + dart run build_runner test --fail-on-severe -- -p chrome test/lib/sporran_scenario3_test.dart package-analysis: runs-on: ubuntu-latest