From 41540744aba2eccd219c257984dc841cdc2f7b8a Mon Sep 17 00:00:00 2001 From: VC Date: Thu, 6 Mar 2025 17:47:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7:=20add=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/lint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..e53abf9 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,14 @@ +--- +name: ansible-lint +on: + - push +jobs: + lint-everything: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v3 + - name: Run yamllint + uses: ibiqlik/action-yamllint@v3 + - name: Run ansible-lint + uses: ansible/ansible-lint@main