From 6d4ceb989f497e76ef3fb59a40dc4cd980378531 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 27 Apr 2021 14:13:48 +1200 Subject: [PATCH] Fix CI to run builder tests successfully Now that the tests include real prover logic, we need to run them in release mode. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df41eeb1..f1a30747 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --verbose --all + args: --verbose --release bitrot: name: Bitrot check @@ -37,7 +37,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --all --benches + args: --benches book: name: Book tests @@ -156,4 +156,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: fmt - args: --all -- --check + args: -- --check