Skip to content

Commit 7a92647

Browse files
authored
Merge pull request #2 from wintermute-core/main-valdation
chore: add main validation
2 parents cac0069 + 85c523d commit 7a92647

File tree

9 files changed

+49
-357
lines changed

9 files changed

+49
-357
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Main Branch Validation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'charts/**'
9+
- '.github/workflows/**'
10+
11+
jobs:
12+
validate-helm-chart:
13+
name: Validate Helm Chart on Main
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Install Helm
21+
uses: azure/setup-helm@v4
22+
with:
23+
version: 'v3.8.0'
24+
25+
- name: Helm lint
26+
run: |
27+
echo "Running helm lint on k8s-service chart..."
28+
helm lint charts/k8s-service -f charts/k8s-service/linter_values.yaml
29+
echo "✓ Helm lint passed"
30+
31+
- name: Helm template validation
32+
run: |
33+
echo "Testing template rendering with linter_values.yaml..."
34+
helm template test-release charts/k8s-service -f charts/k8s-service/linter_values.yaml > /dev/null
35+
echo "✓ Template rendering successful"
36+
37+
- name: Validation complete
38+
run: |
39+
echo "✓ Main branch validation passed"
40+
echo "Chart is ready for release"

CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 114 deletions
This file was deleted.

GRUNTWORK_PHILOSOPHY.md

Lines changed: 0 additions & 66 deletions
This file was deleted.

NOTICE

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)