Merge pull request #42 from Foundation-Devices/stratum-v1 #265
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: © 2023 Foundation Devices, Inc. <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Basic Fuzzing | |
on: [push] | |
jobs: | |
fuzz: | |
name: Fuzz tests pass? | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rust-toolchain | |
with: | |
toolchain: nightly | |
- run: rustup override set nightly | |
- run: cargo install cargo-fuzz | |
- run: ./contrib/fuzz.sh |