CI: Put fuzz last in CRATES list

There is a bug in `run_task` [0] that drastically reduces our test
coverage. We can bypass it by putting `fuzz` last in the list.

[0] rust-bitcoin/rust-bitcoin-maintainer-tools#10
This commit is contained in:
Tobin C. Harding 2024-08-09 12:12:42 +10:00
parent aed61bd2d4
commit 009e747323
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@
# shellcheck disable=SC2034
# Crates in this workspace to test (note "fuzz" is only built not tested).
CRATES=("addresses" "base58" "bitcoin" "fuzz" "hashes" "internals" "io" "units")
CRATES=("addresses" "base58" "bitcoin" "hashes" "internals" "io" "units" "fuzz")