This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
feat: update CODEOWNERS file #159
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: PR | |
on: pull_request | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.4.1 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: add Helm repo | |
run: | | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.0.1 | |
with: | |
version: v3.3.1 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --target-branch main) | |
if [[ -n "$changed" ]]; then | |
echo "::set-output name=changed::true" | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint --validate-maintainers=false --target-branch main |