Update Chart.yaml #26
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: Test Brudi-Operator | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install requirements | |
run: bash $(pwd)/scripts/requirements.sh | |
- name: Test brudi-operator chart | |
run: > | |
helm template deploy/helm-chart/brudi-operator/ --debug && | |
helm lint deploy/helm-chart/brudi-operator/ | |
- name: Test backup chart | |
run: > | |
helm template helm-charts/backup/ --debug && | |
helm lint helm-charts/backup/ | |
- name: Test docker build | |
run: bash $(pwd)/scripts/docker-build-tag.sh latest |