Skip to content

Commit

Permalink
Fix continue-on-error issue in GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ebkalderon committed Jun 12, 2021
1 parent 34c1406 commit a24ab95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
rustup component add rustfmt
cargo fmt --all -- --check
- name: Build
continue-on-error: ${{ matrix.continue-on-error }}
continue-on-error: ${{ matrix.continue-on-error || false }}
run: cargo build --all --verbose
- name: Run tests
continue-on-error: ${{ matrix.continue-on-error }}
continue-on-error: ${{ matrix.continue-on-error || false }}
run: cargo test --all --verbose

0 comments on commit a24ab95

Please sign in to comment.