We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2433d commit cf0c6a8Copy full SHA for cf0c6a8
.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
@@ -48,7 +48,16 @@ jobs:
48
bundle config --without benchmark
49
bundle install
50
51
- - run: rake compile
+ - run: rake ragel 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
58
59
+ exit 1
60
+ fi
61
62
- run: rake test JSON_COMPACT=1
63
0 commit comments