Skip to content

Revive race detection flag and race conditions fixes in the test exec… #368

Revive race detection flag and race conditions fixes in the test exec…

Revive race detection flag and race conditions fixes in the test exec… #368

Workflow file for this run

---
name: Fuzz tests
on: # yamllint disable-line rule:truthy
push:
branches:
- main
- develop
workflow_dispatch:
workflow_call:
outputs:
workflow_output:
description: "Fuzz output"
value: ${{ jobs.fuzz_test.outputs.fuzz_output_failure }}
jobs:
fuzz_test:
name: Polygon Edge
runs-on: ubuntu-latest
outputs:
fuzz_output_failure: ${{ steps.run_fuzz_failure.outputs.test_output }}
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Checkout Code
uses: actions/checkout@v3
- name: Run Fuzz Test
run: make fuzz-test
- name: Run fuzz tests failed
if: failure()
id: run_fuzz_failure
run: echo "test_output=false" >> $GITHUB_OUTPUT