diff --git a/.github/workflows/build-unit-tests.yaml b/.github/workflows/build-unit-tests.yaml index 8fd38bd662..9442445f97 100644 --- a/.github/workflows/build-unit-tests.yaml +++ b/.github/workflows/build-unit-tests.yaml @@ -47,6 +47,14 @@ jobs: # NOTE: on mac, this is actually symlink'd to clang, not gcc, but that's ok - we want to build on both run: gcc -v + - name: Handle docs-enums separately just to make github logs more readable + working-directory: ./unit_tests/ + run: make -j4 docs-enums + + - name: Handle configs separately just to make github logs more readable + working-directory: ./unit_tests/ + run: make -j4 config + - name: Build Tests working-directory: ./unit_tests/ run: make -j4 COVERAGE=yes