This commit is contained in:
parent
8d30bb6eb6
commit
18352f1b13
20
.gitea/workflows/ansible-lint.yaml
Normal file
20
.gitea/workflows/ansible-lint.yaml
Normal file
@ -0,0 +1,20 @@
|
||||
name: ansible-lint
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Ansible Lint # Naming the build is important to use it as a status check
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
# Important: This sets up your GITHUB_WORKSPACE environment variable
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # needed for progressive mode to work
|
||||
|
||||
- name: Run ansible-lint
|
||||
# replace `main` with any valid ref, or tags like `v6`
|
||||
uses: ansible/ansible-lint-action@main
|
||||
# optional:
|
||||
# with:
|
||||
# path: "playbooks/" # <-- only one value is allowed
|
Loading…
Reference in New Issue
Block a user