Skip to content

Commit

Permalink
Fix the fuzzing GH action (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGS authored Aug 13, 2024
1 parent fdc025a commit e7e97a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ on:
workflow_dispatch:

jobs:
setup:
name: 'build'
fuzz:
name: 'fuzz'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: ./.github/actions/setup-rust
- name: Install cargo fuzz
run: cargo install cargo-fuzz
- name: Run fuzzing target
run: cargo fuzz run fuzz_target_1 -- -max_total_time=600
continue-on-error: true
- name: Archive crash artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e7e97a5

Please sign in to comment.