Skip to content

Commit

Permalink
Fix continue-on-error logic
Browse files Browse the repository at this point in the history
  • Loading branch information
borntyping committed Nov 25, 2021
1 parent cc50e8b commit 2a6e21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
rust-test:
runs-on: ${{ matrix.os }}

continue-on-error: ${{ matrix.toolchain != 'stable' || (matrix.toolchain == 'macos-latest' && contains(matrix.features, 'timestamps')) }}
continue-on-error: ${{ matrix.toolchain != 'stable' || (matrix.os == 'macos-latest' && contains(matrix.features, 'timestamps')) }}

strategy:
matrix:
Expand All @@ -56,7 +56,7 @@ jobs:
- {
os: ubuntu-latest,
toolchain: nightly,
features: "threads,nightly",
features: "colors,threads,timestamps,nightly",
}

steps:
Expand Down

0 comments on commit 2a6e21a

Please sign in to comment.