Feature/fuzz (#44)

* Add fuzzing ci, add bedge to README
This commit is contained in:
red0124
2024-03-03 20:46:12 +01:00
committed by GitHub
parent f5b750dd93
commit 1b9a01f787
4 changed files with 132 additions and 0 deletions

43
.github/workflows/fuzz.yml vendored Normal file
View File

@@ -0,0 +1,43 @@
name: fuzz-ci
on:
workflow_dispatch:
push:
branches:
- master
- feature/**
- improvement/**
- bugfix/**
pull_request:
branches:
- master
- feature/**
- improvement/**
- bugfix/**
jobs:
clang_tests:
if: >-
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
! contains(toJSON(github.event.commits.*.message), '[skip github]')
runs-on: ubuntu-latest
name: "Fuzzing"
container:
image: silkeh/clang:15
options: -v /usr/local:/host_usr_local
steps:
- uses: actions/checkout@v1
- name: Build
working-directory: .github/fuzz
run: make
- name: Run
working-directory: .github/fuzz
run: make run