From 3156349f9247df6f65373df3b7386b2642d568e3 Mon Sep 17 00:00:00 2001 From: June Date: Sun, 24 Nov 2024 01:25:10 +0100 Subject: [PATCH] WIP: ci --- .forgejo/workflows/lint.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .forgejo/workflows/lint.yaml diff --git a/.forgejo/workflows/lint.yaml b/.forgejo/workflows/lint.yaml new file mode 100644 index 0000000..283ac63 --- /dev/null +++ b/.forgejo/workflows/lint.yaml @@ -0,0 +1,19 @@ +# 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: + - uses: https://github.com/actions/setup-node@4 + - uses: actions/checkout@v4 + - name: Run ansible-lint + uses: https://github.com/ansible/ansible-lint@main + with: + setup_python: "true"