Skip to content

Commit

Permalink
Do not fail overall build workflow if build on windows host is failed (
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Anyshchenko committed Nov 25, 2020
1 parent 2ed4d80 commit 448f1c9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -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
Expand Down

0 comments on commit 448f1c9

Please sign in to comment.