-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (34 loc) · 1.05 KB
/
ci.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
---
name: ci
# yamllint disable-line rule:truthy
on: push
jobs:
ci:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🔩 Install dependencys
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: 🔩 Setup helmchart lint
uses: helm/chart-testing-action@main
- name: 🚀 Run yamllint
uses: frenck/action-yamllint@v1
- name: 🚀 Run markdownlint
uses: actionshub/[email protected]
- name: 🚀 Run helmchart lint
run: ct lint --all --config ./.github/ct.yaml
- name: 📝Generate helm-chart documentation
run: .github/scripts/helm-docs.sh
- name: ⤴️ Commit automatically generated documentation
uses: EndBug/add-and-commit@v9
with:
message: add automatically generated documentation
committer_name: GitHub Actions
committer_email: [email protected]
add: '*.md'