Skip to content

Commit

Permalink
馃И CI: Add fuzzing workflow for PRs (#262)
Browse files Browse the repository at this point in the history
This action runs fuzzing for a brief period of time, only against the actual code added in the PR.
It is intended as a relatively quick check,
to guard against code introducing crashes in the Markdown parsing, which should in principle always run against any text input. See: https://google.github.io/oss-fuzz/getting-started/continuous-integration/#how-it-works
  • Loading branch information
chrisjsewell committed Apr 25, 2023
1 parent e717248 commit 2d46a43
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/fuzz.yml
@@ -0,0 +1,34 @@
name: fuzzing

# This action runs fuzzing for a brief period of time,
# only aginst the actual code added in the PR.
# It is intended a relatively quick check,
# to guard against code introducing crashes in the Markdown parsing,
# which should in principle always run against any text input.
# See: https://google.github.io/oss-fuzz/getting-started/continuous-integration/#how-it-works

on:
pull_request:

jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'markdown-it-py'
language: python
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'markdown-it-py'
language: python
fuzz-seconds: 60
- name: Upload Crash
uses: actions/upload-artifact@v3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Expand Up @@ -54,6 +54,7 @@ jobs:
flags: pytests
file: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

test-plugins:

Expand Down

0 comments on commit 2d46a43

Please sign in to comment.