mirror of
https://github.com/cesanta/mongoose.git
synced 2025-06-07 17:42:30 +08:00
commit
b46136a0af
18
.github/workflows/fuzz.yml
vendored
Normal file
18
.github/workflows/fuzz.yml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user