/
githubmirror
/
avahi
Обзор
Документация
Войти
/
githubmirror
/
avahi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/cflite-pr.yml
42 строки
1 KB
dependabot[bot]
build(deps): bump the actions group with 3 updates
01 авг 2026, 11:10
01 авг 2026, 11:10
da2c583
Код
Авторство
О чём код?
--- # See https://google.github.io/clusterfuzzlite/ name: ClusterFuzzLite PR fuzzing on: pull_request: branches: - master permissions: contents: read jobs: PR: runs-on: ubuntu-24.04 concurrency: group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}-cflite cancel-in-progress: true strategy: fail-fast: false matrix: sanitizer: [address, undefined, memory] steps: - name: Repository checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Build Fuzzers id: build uses: google/clusterfuzzlite/actions/build_fuzzers@v1 with: sanitizer: ${{ matrix.sanitizer }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: Run Fuzzers id: run uses: google/clusterfuzzlite/actions/run_fuzzers@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} fuzz-seconds: 600 mode: 'code-change' report-unreproducible-crashes: true sanitizer: ${{ matrix.sanitizer }}