Merge pull request #3137 from cesanta/testtls

add fuzz tests
This commit is contained in:
Sergio R. Caprile 2025-05-15 16:33:17 -03:00 committed by GitHub
commit b46136a0af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -0,0 +1,18 @@
name: Fuzz
on:
schedule:
- cron: '0 21 * * *' # run at 9 PM UTC
# Allow manual runs
workflow_dispatch:
jobs:
fuzz:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [fuzz, fuzz_tls]
name: ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 2 }
- run: make -C test ${{ matrix.target }}