-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.09 KB
/
check.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
---
name: check
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: setup
run: |
sudo apt-get install yamllint
- name: run
run: |
make yamllint
helmlint:
name: helmlint
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: azure/setup-helm@v3
with:
version: "v3.9.2"
- name: run
run: |
make helmlint
kustomizebuild:
name: kustomizebuild
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: setup
env:
KUSTOMIZE_VERSION: "4.5.5"
run: |
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s $KUSTOMIZE_VERSION
kustomize version
- name: run
run: |
make kustomizebuild