Skip to content

chore(deps): update quay.io/helmpack/chart-testing docker tag to v3.9.0 #855

chore(deps): update quay.io/helmpack/chart-testing docker tag to v3.9.0

chore(deps): update quay.io/helmpack/chart-testing docker tag to v3.9.0 #855

Workflow file for this run

---
name: Test
on:
workflow_call:
workflow_dispatch:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: master
- name: Checkout PR
run: git checkout refs/remotes/pull/${{ github.event.number }}/merge
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Lint
run: make lint
- name: Test
run: make test
- name: Track docs
run: |
if ! [ -z "$(git diff traefik/Chart.yaml | grep version:)" ]; then
make docs
if ! [ -z "$(git status | grep traefik/VALUES.md)" ]; then
echo "Traefik values have changed. Run make docs"
exit 1
fi
fi