Skip to content

Commit

Permalink
ci: run fuzz tests on every PR (#2845)
Browse files Browse the repository at this point in the history
  • Loading branch information
rootulp authored Nov 16, 2023
1 parent fc03393 commit 7f3e4ec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,5 @@ jobs:
- name: Run e2e tests
run: make test-e2e

test-fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: Run fuzz tests
run: make test-fuzz
test:
uses: ./.github/workflows/test.yml
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,15 @@ jobs:

- name: Run tests in race mode
run: make test-race

test-fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: Run fuzz tests
run: make test-fuzz

0 comments on commit 7f3e4ec

Please sign in to comment.