Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / .github / workflows / fuzz.yml
blob67680c480dc51f8bcabebbf166ecc6f6f51e8cac
1 name: fuzz
3 on:
4   push:
5   pull_request:
6   schedule:
7     - cron: '0 1 * * SUN'
8   workflow_dispatch:
10 concurrency:
11   group: ${{ github.workflow }}-${{ github.ref }}
12   cancel-in-progress: true
14 permissions:
15   contents: read
17 jobs:
18   build:
19     runs-on: ubuntu-latest
20     env:
21       ACE_ROOT: ${{ github.workspace }}/ACE
22       TAO_ROOT: ${{ github.workspace }}/TAO
24     steps:
25     - name: checkout ACE/TAO
26       uses: actions/checkout@v4
27     - name: Run fuzz
28       run: |
29         perl ${env:ACE_ROOT}/bin/fuzz.pl
30       shell: pwsh