Skip to content

Commit

Permalink
Added yamllint to GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
vedranmiletic committed Sep 26, 2023
1 parent ffb375c commit 9044cfc
Show file tree
Hide file tree
Showing 3 changed files with 460 additions and 450 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/mkdocs-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install yamllint
run: pip install yamllint
- name: Check MkDocs YAML configuration
run: yamllint ./mkdocs.yml
- name: Install required packages
run: pip install -r requirements.txt
- name: Setup caching
Expand Down
5 changes: 5 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extends: default

rules:
line-length:
level: warning
Loading

0 comments on commit 9044cfc

Please sign in to comment.