Skip to content

Merge pull request #15 from mueller-ma/fix/default-values #30

Merge pull request #15 from mueller-ma/fix/default-values

Merge pull request #15 from mueller-ma/fix/default-values #30

Workflow file for this run

---
name: Lint chart and Dockerfile
on: [ pull_request, push ]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Helm
uses: azure/setup-helm@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
check-latest: true
- name: Run helm lint
run: helm lint deploy/cert-manager-webhook-hostingde/ --strict
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
config: ".github/hadolint.yml"