From ad6709920969333842727d9a99c3c90cbdeca680 Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Tue, 16 Apr 2024 19:36:39 +0200 Subject: [PATCH] Add gitea ci actions Signed-off-by: Noah Knegt --- .gitea/workflows/lint.yml | 17 +++++++++++++++++ 1 file changed, 17 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..5030dce --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,17 @@ +--- +name: Linting +run-name: Linting ansible and yaml files +on: + pull_request: + +jobs: + yaml-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v4 + + - name: Lint with yaml-lint + uses: ibiqlik/action-yamllint@v3 + with: + config_file: .yamllint.yml