forked from sentry-kubernetes/charts
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 1.6 KB
/
lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Lint and Test Charts
on: pull_request
jobs:
lint-charts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch=develop --chart-dirs=. )
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Lint Sentry Helm Chart
uses: WyriHaximus/github-action-helm3@v2
if: steps.list-changed.outputs.changed == 'true'
with:
exec: for chart in $(ls -d ./*/); do helm lint $chart; done
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: |
ct lint \
--target-branch=develop \
--chart-dirs=. \
--chart-repos=bitnami=https://charts.bitnami.com/bitnami,bitnami-old=https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami,sentry-kubernetes=https://sentry-kubernetes.github.io/charts
# It would be nice to turn on this testing, but it is hard to get right and
# rather complex (as well as expensive in terms of runner compute time).
# Additionally, this is out of scope of fixing the issue brought up in #456
# - name: Create kind cluster
# uses: helm/[email protected]
# if: steps.list-changed.outputs.changed == 'true'
# - name: Run chart-testing (install)
# run: ct install --target-branch=develop --chart-dirs=.