Thanks to visit codestin.com Credit goes to github.com
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 41fa2db commit c9a5d9aCopy full SHA for c9a5d9a
1 file changed
.github/workflows/verify-expat.yml
@@ -0,0 +1,32 @@
1
+name: Verify bundled libexpat
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ paths:
7
+ - 'Modules/expat/**'
8
+ - '.github/workflows/verify-expat.yml'
9
+ pull_request:
10
11
12
13
14
+permissions:
15
+ contents: read
16
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
19
+ cancel-in-progress: true
20
21
+jobs:
22
+ verify:
23
+ runs-on: ubuntu-latest
24
+ timeout-minutes: 5
25
+ steps:
26
+ - uses: actions/checkout@v6
27
+ with:
28
+ persist-credentials: false
29
+ - name: Download and verify bundled libexpat files
30
+ run: |
31
+ ./Modules/expat/refresh.sh
32
+ git diff --exit-code Modules/expat/
0 commit comments