Update helm chart with the latest Perses version #27
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: lint and test | |
on: | |
pull_request: | |
paths: | |
- "charts/perses/**" | |
branches: | |
- main | |
jobs: | |
helm-lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup helm lint requirements | |
uses: ./.github/actions/setup_helmlint | |
with: | |
create-kind-cluster: "true" | |
- name: setup go lang | |
uses: ./.github/actions/setup_environment | |
with: | |
enable_go: true | |
- name: run chart-testing (install) | |
run: ct install --charts charts/perses | |
- name: install mdox | |
run: go install github.com/bwplotka/mdox@latest | |
- name: run chart README lint | |
run: make update-helm-readme && make checkdocs |