Fix CI to run builder tests successfully

Now that the tests include real prover logic, we need to run them in
release mode.
This commit is contained in:
Jack Grigg 2021-04-27 14:13:48 +12:00
parent 30f01d122c
commit 6d4ceb989f
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --verbose --all args: --verbose --release
bitrot: bitrot:
name: Bitrot check name: Bitrot check
@ -37,7 +37,7 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --all --benches args: --benches
book: book:
name: Book tests name: Book tests
@ -156,4 +156,4 @@ jobs:
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: fmt command: fmt
args: --all -- --check args: -- --check