From 3b2171f9a970574f395a36ca8b0f34bd2ba9dd69 Mon Sep 17 00:00:00 2001 From: Jeldrik Hanschke Date: Mon, 7 Dec 2020 10:08:46 +0100 Subject: [PATCH] continue if ember-canary fails --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47af65e..bb1edaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,7 @@ jobs: test-try: name: Additional Tests runs-on: ubuntu-latest + continue-on-error: ${{ matrix.allow-failure }} needs: - test strategy: @@ -59,10 +60,13 @@ jobs: - ember-lts-3.16 - ember-release - ember-beta - - ember-canary - ember-default-with-jquery - ember-classic - ember-bootstrap-4.4 + allow-failure: [false] + include: + - scenario: ember-canary + allow-failure: true steps: - name: Checkout code uses: actions/checkout@v2