From dec390df1e816171e9dc892d78a2634f9afe2d8a Mon Sep 17 00:00:00 2001 From: Hootan Shadmehr Date: Wed, 10 May 2023 14:17:50 -0400 Subject: [PATCH] ci: check that `tokio-stream/fuzz` compiles (#5682) --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bf99c96e..a7b126fbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -698,6 +698,9 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Install cargo-fuzz run: cargo install cargo-fuzz - - name: Check tokio/ + - name: Check /tokio/ run: cargo fuzz check --all-features working-directory: tokio + - name: Check /tokio-stream/ + run: cargo fuzz check --all-features + working-directory: tokio-stream