Skip to content

Commit 01e2c74

Browse files
committed
Don't stop after the first check
1 parent 7ce13dc commit 01e2c74

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/make.yml

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
sudo apt -q install clang-format
1414
- uses: actions/checkout@v4
1515
- name: Check formatting
16+
if: '!cancelled()'
1617
run: |
1718
clang-format -i */*.[ch]
1819
if git diff | grep ""; then
@@ -22,6 +23,7 @@ jobs:
2223
false
2324
fi
2425
- name: Check C89 compliance
26+
if: '!cancelled()'
2527
env:
2628
CFLAGS: "-O0 -Werror -std=c89 -pedantic -Isrc"
2729
run: |
@@ -33,6 +35,7 @@ jobs:
3335
false
3436
fi
3537
- name: Check value types can be redefined
38+
if: '!cancelled()'
3639
env:
3740
CFLAGS: "-O0 -Werror -DTEST_ALTERNATE_VALUE_TYPES"
3841
run: |

0 commit comments

Comments
 (0)