From a84d495d27327f2af80af1c16203b43b0d008b83 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 25 Feb 2024 11:43:35 +0000 Subject: [PATCH] test workflow --- .gitea/workflows/test.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..f947216 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,21 @@ +name: Build and Test + +on: + pull_request: + push: + branches: + - main + - releases/* + +jobs: + build: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 # all history for all branches and tags + - run: apt install helm -y + - run: helm lint . \ No newline at end of file