From 299396cab0f212195a9a4df552ef5077984314bc Mon Sep 17 00:00:00 2001 From: Vyas Nellutla Date: Sun, 17 Mar 2024 21:09:27 -0500 Subject: [PATCH] ci: setup basic ci --- .github/workflows/ci.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..f6d50e1 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,24 @@ +--- +# GitHub Actions Workflows Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions +name: CI +"on": + push: + branches: + - main + pull_request: + branches: + - "**" + workflow_dispatch: +concurrency: + group: ${{ github.event_name }}-${{ github.ref }}-${{ github.workflow }} + cancel-in-progress: true +permissions: read-all +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.1.1 + - name: Helm Lint + run: | + helm lint --strict