Skip to content

Commit

Permalink
chore: add linter, tepmlate validation CI
Browse files Browse the repository at this point in the history
  • Loading branch information
x-mass committed Feb 2, 2025
1 parent f390553 commit 399da18
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches:
- master
pull_request:

concurrency:
# In master we want to run for every commit, in other branches — only for the last one
group: ${{
( github.ref == 'refs/heads/master' && format('{0}/{1}/{2}', github.workflow, github.ref, github.sha) )
||
format('{0}/{1}', github.workflow, github.ref) }}
cancel-in-progress: true

jobs:
lint:
runs-on: ubuntu-latest
steps:
- run: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- uses: actions/checkout@v4
- run: helm lint
- run: helm template my-release .

0 comments on commit 399da18

Please sign in to comment.