We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5242969 commit 10a29dbCopy full SHA for 10a29db
1 file changed
.github/workflows/ci.yml
@@ -6,6 +6,24 @@ on:
6
workflow_dispatch:
7
8
jobs:
9
+ verify-patch-files:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ submodules: true
15
+ - uses: actions/setup-go@v5
16
+ - name: Run update-patch.sh and verify no diffs
17
+ run: |
18
+ cd go-runner/overlay
19
+ ./update-patch.sh
20
+
21
+ if ! git diff --exit-code . > /dev/null 2>&1; then
22
+ echo "Patch files are out of date. Run './go-runner/overlay/update-patch.sh' locally and commit the changes."
23
+ git diff
24
+ exit 1
25
+ fi
26
27
lint:
28
runs-on: ubuntu-latest
29
steps:
@@ -97,6 +115,7 @@ jobs:
97
115
98
116
if: always()
99
117
needs:
118
+ - verify-patch-files
100
119
- lint
101
120
- tests
102
121
- compat-integration-test-walltime
0 commit comments