MOD-12261 add CI + fuzz tests #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_and_test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run Build and Test | |
| uses: ./.github/actions/build_and_test | |
| fuzz_tests: | |
| name: Fuzz Tests (${{ matrix.fuzz_target }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| fuzz_target: | |
| - fuzz_string | |
| # Add more fuzz targets here as needed | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run Fuzz Tests | |
| uses: ./.github/actions/fuzz_tests | |
| with: | |
| fuzz_target: ${{ matrix.fuzz_target }} | |