Skip to content

Commit

Permalink
ci: check that tokio/fuzz compiles (#5670)
Browse files Browse the repository at this point in the history
  • Loading branch information
hootio committed May 3, 2023
1 parent 61b68a8 commit 3abe877
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3abe877

Please sign in to comment.