chore: bump watchtower chart #68
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: Test | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.12.0 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.6.1 | |
- name: Lint chart | |
run: | | |
# For AWS Chart, region is a required value | |
for chart in $(ls charts); do | |
ct lint \ | |
--helm-lint-extra-args='--set region={"eu-west-1"}' \ | |
--charts charts/$chart | |
done | |
- name: Run tests | |
run: make test |