diff --git a/.forgejo/workflows/lint.yaml b/.forgejo/workflows/lint.yaml new file mode 100644 index 0000000..ba2d470 --- /dev/null +++ b/.forgejo/workflows/lint.yaml @@ -0,0 +1,22 @@ +# Links & Resources: +# https://github.com/ansible/ansible-lint?tab=readme-ov-file#using-ansible-lint-as-a-github-action +on: + pull_request: + push: + +jobs: + ansible-lint: + name: Ansible Lint + runs-on: docker + container: + image: docker.io/library/ubuntu:latest + steps: + - name: Install nodejs + run: | + apt update + apt install -y nodejs + - uses: actions/checkout@v4 + - name: Run ansible-lint + uses: https://github.com/ansible/ansible-lint@main + with: + setup_python: "true"