Skip to content

Commit

Permalink
no fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang committed Dec 5, 2024
1 parent 4c5b109 commit 6eb1536
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-13-large]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -47,6 +48,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-13-large]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -69,7 +71,7 @@ jobs:
- name: Run tests
run:
| # https://github.com/rust-lang/cargo/issues/6669 we have to run ALL tests with two commands
cargo test --all-targets
cargo test --all-targets --no-fail-fast
cargo test --doc

wasm64:
Expand All @@ -78,6 +80,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-13-large]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -103,7 +106,7 @@ jobs:
components: rust-src
- name: Run tests
run:
WASM64=1 cargo test --package ic-cdk-e2e-tests
WASM64=1 cargo test --package ic-cdk-e2e-tests --no-fail-fast

fmt:
name: cargo fmt
Expand Down

0 comments on commit 6eb1536

Please sign in to comment.