Skip to content

Commit

Permalink
Linting GH pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmirnow committed Jan 10, 2025
1 parent c6b51bb commit 42532c9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: lint

on: # yamllint disable-line rule:truthy
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: install dependencies
run: >
pip install -r .dev_requirements.txt
- run: yamllint --strict -c .yamllint .

- run: ansible-lint

0 comments on commit 42532c9

Please sign in to comment.