Switch to the ESO operator #8
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: Helm Unit Test | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
permissions: read-all | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Run helm lint over the chart | |
# It has to be 24.04 because -latest has a podman version that is too old | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Run make helmlint | |
run: | | |
make helm-unittest |