Skip to content

Commit af4b7a7

Browse files
authored
Add ci-manifest GHA (#21)
* Add ci-manifest GHA * use workflow_call for reuseable
1 parent 5cddc6e commit af4b7a7

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci-manifest.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)