-
Notifications
You must be signed in to change notification settings - Fork 328
40 lines (37 loc) · 819 Bytes
/
ci.yaml
File metadata and controls
40 lines (37 loc) · 819 Bytes
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:
paths:
- 'charts/**'
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run chart-testing (lint)
uses: helm/chart-testing-action@master
with:
command: lint
config: .github/ct.yaml
kubeval-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.8.1
- name: Run kubeval
run: |
KUBERNETES_VERSION=${{ matrix.k8s }}
.github/workflows/kubeval.sh
strategy:
matrix:
k8s:
- 1.29
- 1.30
- 1.31
- 1.32
- 1.33