mirror of
https://github.com/roles-ansible/ansible_collection_users.git
synced 2024-08-16 10:29:50 +02:00
23 lines
419 B
YAML
23 lines
419 B
YAML
|
---
|
||
|
name: Jinja2 Linting check
|
||
|
|
||
|
# yamllint disable-line rule:truthy
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Jinja2 Linting
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout git repo
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
submodules: true
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- name: Run j2lint
|
||
|
uses: ansible-actions/j2lint-action@v0.0.1
|
||
|
with:
|
||
|
target: "./"
|