From ae7b32db75db29757beafe82f5dffd3abe3f8f0d Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 19 Apr 2024 18:38:00 +0200 Subject: [PATCH] [ci] run oss-fuzz scheduled, undefined sanitizer --- .github/workflows/fuzzing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml index 9365b17f5..cf4794f67 100644 --- a/.github/workflows/fuzzing.yml +++ b/.github/workflows/fuzzing.yml @@ -5,6 +5,8 @@ on: branches: [ master, stable* ] pull_request: branches: [ master, stable* ] + schedule: + - cron: "0 3 21 * *" jobs: fuzzing: @@ -15,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - sanitizer: [address] + sanitizer: [address, undefined] steps: - uses: actions/checkout@v4