From 8e80fc4f15eae004c96c564d59f0a624bcf008e5 Mon Sep 17 00:00:00 2001 From: June Date: Sun, 1 Dec 2024 03:27:27 +0100 Subject: [PATCH] WIP: ci --- .forgejo/workflows/lint.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 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..5e3aae7 --- /dev/null +++ b/.forgejo/workflows/lint.yaml @@ -0,0 +1,20 @@ +# 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 + steps: + - uses: actions/checkout@v4 + - name: miau + run: | + apt update + apt install -y python3-pip + - name: Run ansible-lint + uses: https://github.com/ansible/ansible-lint@main + with: + setup_python: "false"