Skip to content

Commit 2281239

Browse files
committed
Checked YAML files
1 parent fb1efe1 commit 2281239

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: pull_request
2+
3+
name: Workflow templates
4+
5+
jobs:
6+
check-yaml:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- run: |
12+
docker pull mikefarah/yq
13+
for f in $(find github/workflows/ -name '*.yaml'); do
14+
docker run --rm --volume "$PWD":/workdir mikefarah/yq "$f"
15+
done

0 commit comments

Comments
 (0)