Skip to content

Commit

Permalink
Don't stop after the first check
Browse files Browse the repository at this point in the history
  • Loading branch information
fragglet committed Dec 17, 2024
1 parent caf9953 commit 0d44af4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
sudo apt -q install clang-format
- uses: actions/checkout@v4
- name: Check formatting
continue-on-error: true
run: |
clang-format -i */*.[ch]
if git diff | grep ""; then
Expand All @@ -22,6 +23,7 @@ jobs:
false
fi
- name: Check C89 compliance
continue-on-error: true
env:
CFLAGS: "-O0 -Werror -std=c89 -pedantic -Isrc"
run: |
Expand All @@ -32,6 +34,7 @@ jobs:
false
fi
- name: Check value types can be redefined
continue-on-error: true
env:
CFLAGS: "-O0 -Werror -DTEST_ALTERNATE_VALUE_TYPES"
run: |
Expand Down

0 comments on commit 0d44af4

Please sign in to comment.