From 65c3ea57270bbb4bc00ec11c078c7b1cacf51cd0 Mon Sep 17 00:00:00 2001 From: VC Date: Thu, 23 Oct 2025 09:35:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7:=20add=20minimal=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..3a82a90 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,14 @@ +--- +name: terraform-lint + +on: + - push + +jobs: + terraform-lint: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + - name: Lint Terraform + uses: actionshub/terraform-lint@main