You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ccpp.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,14 @@ jobs:
9
9
10
10
steps:
11
11
- uses: actions/checkout@v4
12
+
13
+
- name: Rebuild ./nuklear.h
14
+
run: make nuke
15
+
16
+
- name: Ensure ./nuklear.h matches sources
17
+
run: |
18
+
git diff --exit-code nuklear.h || (printf "\nError: nuklear.h does not match sources. To fix:\n1. Apply changes to ./src/*\n2. Rebuild with 'make nuke'\n" && exit 1)
0 commit comments