Update prometheus stack dependency version #28
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: CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
helm-chart-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
- name: Run helm lint | |
run: helm lint ./charts/deepgram-self-hosted | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- name: Install helm-docs | |
run: | | |
go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest | |
- name: Run helm-docs | |
run: | | |
helm-docs | |
- name: Check if README.md is up to date | |
run: | | |
if ! git diff --quiet -- ./charts/deepgram-self-hosted/README.md; then | |
echo "README.md is out of date. Please run helm-docs and commit the changes." | |
exit 1 | |
fi |