We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2433d commit 7496b5aCopy full SHA for 7496b5a
.gitattributes
@@ -0,0 +1,2 @@
1
+ext/json/ext/parser/parser.c linguist-generated=true
2
+java/src/json/ext/Parser.java linguist-generated=true
.github/workflows/ci.yml
@@ -50,6 +50,17 @@ jobs:
50
51
- run: rake compile
52
53
+ - run: |
54
+ if ! git diff-index --quiet HEAD; then
55
+ printf 'These files changed when running Ragel:\n\n'
56
+
57
+ git diff --name-only | while read -r n ; do
58
+ echo "* $n"
59
+ done
60
61
+ exit 1
62
+ fi
63
64
- run: rake test JSON_COMPACT=1
65
66
- run: rake build
0 commit comments