From 1215c58e7a960443644065b4923b84db15d03cea Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Fri, 1 Sep 2023 02:04:44 +0200 Subject: [PATCH] Add CI using Gitea actions --- .gitea/workflows/lint.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/lint.yaml diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml new file mode 100644 index 0000000..8e84957 --- /dev/null +++ b/.gitea/workflows/lint.yaml @@ -0,0 +1,10 @@ +name: Lint Ansible files +run-name: ${{ gitea.actor }} is linting Ansible files! +on: [push] +jobs: + lint-ansible-files: + runs-on: ubuntu-22.04 + steps: + - run: echo "it works!" + - name: Check out repo + uses: actions/checkout@v3