Fix Windows CRT linking issues #114
This workflow graph cannot be shown
A graph will be generated the next time this workflow is run.
Annotations
1 error
|
Invalid workflow file:
.github/workflows/test-workflow.yml#L1
(Line: 220, Col: 7): There's not enough info to determine what you meant. Add one of these properties: cancel, run, shell, uses, wait, wait-all, with, working-directory, (Line: 221, Col: 10): Unexpected value 'bash', (Line: 222, Col: 8): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.build-env.outputs.build-output-dir, (Line: 222, Col: 8): Unexpected value 'cd "${{ steps.build-env.outputs.build-output-dir }}"
echo "🧪 Running Google Tests..."
if [[ "${{ matrix.os }}" == "windows-2022" ]]; then
UNIT_TEST_EXECUTABLE="./bin/tests/ChainedDecosUnitTests.exe"
INTEGRATION_TEST_EXECUTABLE="./bin/tests/ChainedDecosIntegrationTests.exe"
else
UNIT_TEST_EXECUTABLE="./bin/tests/ChainedDecosUnitTests"
INTEGRATION_TEST_EXECUTABLE="./bin/tests/ChainedDecosIntegrationTests"
fi
echo "=== UNIT TESTS ==="
if [[ -f "$U[...]
|