From 448f1c98b6dc847456dee7a818f15011c3125af1 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Wed, 25 Nov 2020 10:10:20 +0200 Subject: [PATCH] Do not fail overall build workflow if build on windows host is failed (#480) --- .github/workflows/rust.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2a7cc87..7223673 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -55,16 +55,21 @@ jobs: test: name: ${{ matrix.build }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.experimental }} strategy: + fail-fast: false matrix: build: [Linux, macOS, Windows] include: - build: Linux os: ubuntu-latest + experimental: false - build: macOS - os: macOS-latest + os: macos-latest + experimental: false - build: Windows os: windows-latest + experimental: true steps: - name: Checkout sources uses: actions/checkout@v2