From f3b27cdd2a2ee2da895dffadfed4c49d5c92deda Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 29 Jun 2022 15:08:59 -0700 Subject: [PATCH] Compile fuzz targets in CI --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c91b0d49..45b21a46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,6 +63,15 @@ jobs: - name: Run cargo miri test (32-bit big endian) run: cargo miri test --target mips-unknown-linux-gnu + 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