removing values schema until we can validate all fields #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify Chart Documentation | |
on: | |
push: | |
jobs: | |
verify-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: install chart-doc-gen | |
run: go install kubepack.dev/chart-doc-gen@latest | |
- name: Set up dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make | |
# Install chart-doc-gen or add additional commands as needed | |
- name: Generate Documentation | |
run: make gen | |
- name: Verify Documentation | |
run: make verify |