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 5cddc6e commit af4b7a7Copy full SHA for af4b7a7
.github/workflows/ci-manifest.yml
@@ -0,0 +1,31 @@
1
+# Reference:
2
+# - https://github.com/actions/checkout
3
+# - https://github.com/mgedmin/check-manifest
4
+
5
+name: ci-manifest
6
7
+on:
8
+ workflow_call:
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ manifest:
16
+ name: "check-manifest"
17
18
+ runs-on: ubuntu-latest
19
20
+ defaults:
21
+ run:
22
+ shell: bash -l {0}
23
24
+ steps:
25
+ - uses: actions/checkout@v3
26
+ with:
27
+ fetch-depth: 0
28
29
+ - name: "check-manifest"
30
+ run: |
31
+ pipx run check-manifest
0 commit comments