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.
1 parent 6dbf380 commit 77b6febCopy full SHA for 77b6feb
.github/workflows/main.yml
@@ -10,6 +10,19 @@ concurrency:
10
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
11
12
jobs:
13
+ check-codegen-diff:
14
+ runs-on: ubuntu-latest
15
+ name: "Verify auto-generated code is committed"
16
+ container:
17
+ image: swift:6.2-noble
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: Run auto-generated code checks
21
+ run: |
22
+ swift run --package-path Utilities WasmKitDevUtils wasmgen
23
+ swift run --package-path Utilities WasmKitDevUtils vmgen
24
+ [ $(git diff | wc -l) == 0 ] || exit 1
25
+
26
build-macos:
27
strategy:
28
matrix:
0 commit comments