-
Notifications
You must be signed in to change notification settings - Fork 6
68 lines (56 loc) · 1.67 KB
/
lint-test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Lint and Test Charts
on: pull_request
jobs:
linter-artifacthub:
runs-on: ubuntu-20.04
container:
image: artifacthub/ah:v1.2.0
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Run ah lint
working-directory: .
run: ah lint
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.8.0
# Python is required because `ct lint` runs Yamale and
# yamllint which require python
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.1
with:
version: v3.3.0
- name: Run chart-testing (list-changed)
id: generate-json
run: |
changed=$(ct list-changed --config .ct.yaml)
for change in $changed
do
python3 tools/generate-json-schema.py $change
done
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --check-version-increment=false --validate-maintainers=false --config .ct.yaml
- name: Create kind cluster
uses: helm/kind-action@v1.4.0
if: steps.lint.outputs.changed == 'true'
- name: Install chart
uses: helm/chart-testing-action@v2.3.1
if: steps.lint.outputs.changed == 'true'
with:
command: install
config: .ct.yaml