Skip to content

Commit

Permalink
ci cargo-careful test
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-r-earp committed Mar 10, 2024
1 parent 4eeb6b8 commit c10796c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,23 @@ jobs:
env:
RUST_BUILD_RUSTFLAGS: -Ctarget-feature=+fma
run: cargo test --test=integration_tests --no-default-features --features neural-network --target ${{ matrix.target }} conv2_direct -- --format=terse
careful:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: install cargo-careful
if: ${{ !cancelled() }}
run: cargo +nightly install cargo-careful
- name: careful test
if: ${{ !cancelled() }}
run: cargo +nightly careful test --test=integration_tests --no-default-features --features neural-network
- name: careful test single-thread
env:
RAYON_NUM_THREADS: 1
run: cargo +nightly careful test --test=integration_tests --no-default-features --features neural-network
wasm:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit c10796c

Please sign in to comment.