-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (92 loc) · 2.62 KB
/
ci.yml
File metadata and controls
109 lines (92 loc) · 2.62 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Go Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- name: Run tests
run: go test -race -coverprofile=coverage.out ./...
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: cli/coverage.out
lint:
name: Go Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- uses: golangci/golangci-lint-action@v9
with:
working-directory: cli
helm-lint:
name: Helm Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: azure/setup-helm@v4
- name: Lint all charts
run: |
helm lint apps/
for chart in components/*/; do
echo "Linting $chart..."
if grep -q "^dependencies:" "$chart/Chart.yaml"; then
helm dependency build "$chart"
fi
values_args=""
if [ -f "$chart/values/base.yaml" ]; then
values_args="-f $chart/values/base.yaml"
fi
helm lint "$chart" $values_args
done
helm-validate:
name: Helm Validate Values
runs-on: ubuntu-latest
strategy:
matrix:
environment: [dev, staging, prod]
steps:
- uses: actions/checkout@v4
- uses: azure/setup-helm@v4
- name: Build chart dependencies
run: |
for chart in components/*/; do
if grep -q "^dependencies:" "$chart/Chart.yaml"; then
helm dependency build "$chart"
fi
done
- name: Validate apps values
run: helm template apps/ -f apps/values/${{ matrix.environment }}.yaml
- name: Validate component values
run: |
for chart in components/*/; do
name=$(basename "$chart")
base="$chart/values/base.yaml"
env_file="$chart/values/${{ matrix.environment }}.yaml"
if [ -f "$base" ] && [ -f "$env_file" ]; then
echo "Validating $name for ${{ matrix.environment }}..."
helm template "$chart" -f "$base" -f "$env_file"
fi
done