Skip to content

Commit

Permalink
Merge pull request #77 from kkebo/add-yamllint-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kkebo authored Jan 1, 2025
2 parents 3fa6b70 + 2c36d2a commit f48768a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

version: 2
updates:
- package-ecosystem: "swift" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "swift"
directory: "/"
schedule:
interval: "weekly"
reviewers:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: swift format lint -rsp .
yamllint:
runs-on: ubuntu-latest
container: alpine:3.21
steps:
- uses: actions/checkout@v4
- run: apk update && apk add yamllint
- run: yamllint --version
- run: yamllint --strict --config-file .yamllint.yml .
7 changes: 7 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
extends: default

rules:
line-length: false
document-start: false
truthy:
check-keys: false

0 comments on commit f48768a

Please sign in to comment.