Skip to content

chore: init trunk #1950

chore: init trunk

chore: init trunk #1950

name: ci-dgraph-fuzz
on:
pull_request:
paths:
- "**/*.go"
- "**/go.mod"
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- main
- release/**
permissions:
contents: read
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"