MOD-14559 Fix float serialization precision for typed FPHA arrays #54
Workflow file for this run
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_json_de | |
| - fuzz_cbor_decode | |
| - fuzz_cbor_roundtrip | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run Fuzz Tests | |
| uses: ./.github/actions/fuzz_tests | |
| with: | |
| fuzz_target: ${{ matrix.fuzz_target }} | |