Skip to content

Commit eb15ee4

Browse files
authored
Merge pull request #43 from PeterAdams-A/installYamllint
Install yamllint if missing.
2 parents 93d543f + 04aac31 commit eb15ee4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/soundness.yml

+1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ jobs:
202202
persist-credentials: false
203203
- name: Run yamllint
204204
run: |
205+
which yamllint >/dev/null || ( apt-get update && apt-get install -y yamllint )
205206
curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/configs/yamllint.yml > /tmp/yamllint.yml
206207
yamllint --strict --config-file /tmp/yamllint.yml ${GITHUB_WORKSPACE}
207208
python-lint-check:

0 commit comments

Comments
 (0)