Changing .spec.strategy.type to Replace #12
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: Testing charts | |
on: | |
push: | |
branches: | |
- '*' | |
- '!main' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- edited | |
- reopened | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install yamllint | |
run: pip install yamllint | |
- name: Lint YAML files | |
run: yamllint . | |
test-charts: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/[email protected] | |
- uses: azure/setup-helm@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get changed files in the charts folder | |
id: changed-files-specific | |
uses: tj-actions/changed-files@v37 | |
with: | |
files: charts | |
- name: Create k8s Kind Cluster | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: helm/[email protected] | |
- name: Install kubectl | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: Azure/setup-kubectl@v3 | |
- name: Run lint for any chart concerned by the commit | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
run: | | |
.github/workflows/lint_modified_charts.sh ${{ steps.changed-files-specific.outputs.all_changed_files }} | |
- name: Run test for any chart concerned by the commit | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
run: | | |
.github/workflows/deploy_modified_charts.sh ${{ steps.changed-files-specific.outputs.all_changed_files }} |