Skip to content

ci(test): integrate Trunk into multiple CI workflows to identify flaky tests #1905

ci(test): integrate Trunk into multiple CI workflows to identify flaky tests

ci(test): integrate Trunk into multiple CI workflows to identify flaky tests #1905

Workflow file for this run

name: ci-dgraph-fuzz
on:
pull_request:
paths:
- '**/*.go'
- '**/go.mod'
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- main
- 'release/**'
jobs:
fuzz-test:
if: github.event.pull_request.draft == false
runs-on: warp-ubuntu-latest-x64-4x
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run fuzz tests
run: |
#!/bin/bash
# go env settings
export GOPATH=~/go
go test ./dql -fuzz="Fuzz" -fuzztime="300s" -fuzzminimizetime="120s"