Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / .github / workflows / fuzz.yml
blob6395abffbb1dd2ca887299b31f68b2ef6c314370
1 name: fuzz
3 on:
4   push:
5   pull_request:
6   schedule:
7     - cron: '0 1 * * SUN'
8     
9 concurrency:
10   group: ${{ github.workflow }}-${{ github.ref }}
11   cancel-in-progress: true
13 jobs:
14   build:
15     runs-on: ubuntu-latest
16     env:
17       ACE_ROOT: ${{ github.workspace }}/ACE
18       TAO_ROOT: ${{ github.workspace }}/TAO
20     steps:
21     - name: checkout ACE/TAO
22       uses: actions/checkout@v2
23     - name: Run fuzz
24       run: |
25         perl ${env:ACE_ROOT}/bin/fuzz.pl
26       shell: pwsh