Add CI build to cover fuzz target

This commit is contained in:
David Tolnay 2022-07-08 12:04:06 -07:00
parent 5b48860450
commit c69e847a68
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -50,6 +50,15 @@ jobs:
env:
MIRIFLAGS: -Zmiri-disable-isolation -Zmiri-strict-provenance
fuzz:
name: Fuzz
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/install@cargo-fuzz
- run: cargo fuzz build -O
outdated:
name: Outdated
runs-on: ubuntu-latest
@ -58,3 +67,4 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/install@cargo-outdated
- run: cargo outdated --workspace --exit-code 1
- run: cargo outdated --manifest-path fuzz/Cargo.toml --exit-code 1