๐พ argocd v2.7.13 ๐พ #548
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: Lint Test | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
- 'README.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ๐๏ธ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Helm ๐งฐ | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.5.1 | |
- name: Setup Python ๐ | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Setup chart-testing ๐งฐ | |
uses: helm/[email protected] | |
- name: Run Chart lint tests ๐งช | |
run: ct lint |