Do not fail overall build workflow if build on windows host is failed (#480)

master
Oleksandr Anyshchenko 4 years ago committed by GitHub
parent 2ed4d80cf3
commit 448f1c98b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      .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

Loading…
Cancel
Save