Skip to content

docs: sort and reorganize .gitignore, .gitattributes, .editorconfig #22

docs: sort and reorganize .gitignore, .gitattributes, .editorconfig

docs: sort and reorganize .gitignore, .gitattributes, .editorconfig #22

Workflow file for this run

# SPDX-License-Identifier: MPL-2.0

Check failure on line 1 in .github/workflows/cflite_pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cflite_pr.yml

Invalid workflow file

(Line: 8, Col: 1): Unexpected value 'timeout-minutes'
# ClusterFuzzLite PR Fuzzing - Layer 6
#
# Runs on every PR for 5 minutes to catch obvious bugs
# Full fuzzing runs happen in cflite_batch.yml
name: ClusterFuzzLite PR Fuzzing
timeout-minutes: 30
on:
pull_request:
paths:
- 'impl/rust-cli/src/**'
- 'impl/rust-cli/fuzz/**'
- '.clusterfuzzlite/**'
permissions:
contents: read
jobs:
pr_fuzzing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
steps:
- name: Checkout code
uses: actions/checkout@1cce3390c2bfda521930d01229c073c7ff920824 # v4
- name: Build fuzzers (${{ matrix.sanitizer }})
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
language: rust
sanitizer: ${{ matrix.sanitizer }}
- name: Run fuzzers (${{ matrix.sanitizer }})
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 300 # 5 minutes per sanitizer
mode: 'code-change'
sanitizer: ${{ matrix.sanitizer }}
output-sarif: true
- name: Upload SARIF (if crashes found)
if: always() && steps.run.outputs.sarif-output != ''
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
with:
sarif_file: ${{ steps.run.outputs.sarif-output }}
category: clusterfuzzlite-${{ matrix.sanitizer }}