From 3abe877bf7de2bb6932dca18aafd82b8ce6658cc Mon Sep 17 00:00:00 2001 From: Hootan Shadmehr Date: Wed, 3 May 2023 16:00:06 -0400 Subject: [PATCH] ci: check that `tokio/fuzz` compiles (#5670) --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4651ced4f..2bf99c96e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -685,3 +685,19 @@ jobs: cargo install cargo-check-external-types --locked --version 0.1.6 cargo check-external-types --all-features --config external-types.toml working-directory: tokio + + check-fuzzing: + name: check-fuzzing + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Rust ${{ env.rust_nightly }} + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ env.rust_nightly }} + - uses: Swatinem/rust-cache@v2 + - name: Install cargo-fuzz + run: cargo install cargo-fuzz + - name: Check tokio/ + run: cargo fuzz check --all-features + working-directory: tokio