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 846b96a commit b7bbe97Copy full SHA for b7bbe97
.github/workflows/simple.yml
@@ -38,8 +38,11 @@ jobs:
38
# Build first with matrix config
39
${{ matrix.config }} ${{ matrix.force_fail }} ./scripts/build-wolfprovider.sh || BUILD_RESULT=$?
40
41
- # Run all tests regardless of build result
42
- ${{ matrix.force_fail }} ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
+ # Run all tests
+ ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
43
+
44
+ # Run all tests with force fail
45
+ WOLFPROV_FORCE_FAIL=1 ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
46
47
# For force_fail, we expect failures (return 1)
48
if [ -n "${{ matrix.force_fail }}" ]; then
0 commit comments