We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
check-autogen-diff
1 parent c11d798 commit 291b75eCopy full SHA for 291b75e
.github/workflows/main.yml
@@ -20,9 +20,8 @@ jobs:
20
fetch-depth: 2
21
- name: Run auto-generated code checks
22
run: |
23
- swift run --package-path Utilities WasmKitDevUtils wasmgen
24
- swift run --package-path Utilities WasmKitDevUtils vmgen
25
- [ $(git diff | wc -l) == 0 ] || exit 1
+ [[ $(swift run -q --package-path Utilities WasmKitDevUtils wasmgen | wc -l) == 0 ]] || exit 1
+ [[ $(swift run --package-path Utilities WasmKitDevUtils vmgen | wc -l) == 0 ]] || exit 1
26
27
build-macos:
28
strategy:
0 commit comments