Skip to content

Commit

Permalink
feat(ci): add term-fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Mar 27, 2024
1 parent 916078a commit 1e1cd98
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/term-fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: term-fuzz

on:
push:
branches:
- main
pull_request:
paths:
- exp/term/**
- .github/workflows/term-fuzz.yml

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/term
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/term/go.mod
cache: true
cache-dependency-path: ./exp/term.sum
- run: go test -fuzz=FuzzParseSequence -fuzztime=1m -v ./input/...

1 comment on commit 1e1cd98

@caarlos0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💜

Please sign in to comment.