We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4738e89 commit 846b96aCopy full SHA for 846b96a
.github/workflows/simple.yml
@@ -36,12 +36,10 @@ jobs:
36
- name: Run build and tests
37
run: |
38
# Build first with matrix config
39
- ${{ matrix.config }} ${{ matrix.force_fail }} ./scripts/build-wolfprovider.sh
40
- BUILD_RESULT=$?
+ ${{ matrix.config }} ${{ matrix.force_fail }} ./scripts/build-wolfprovider.sh || BUILD_RESULT=$?
41
42
# Run all tests regardless of build result
43
- ${{ matrix.force_fail }} ./scripts/cmd_test/do-cmd-tests.sh
44
- TEST_RESULT=$?
+ ${{ matrix.force_fail }} ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
45
46
# For force_fail, we expect failures (return 1)
47
if [ -n "${{ matrix.force_fail }}" ]; then
0 commit comments