[pgadmin4] upgrade from 8.6 to 8.8 #237
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
# Documentation | |
# https://github.com/helm/chart-testing-action | |
name: Lint and Test Charts | |
on: pull_request | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.4.0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Run chart-testing (lint) | |
id: lint | |
uses: helm/[email protected] | |
with: | |
command: lint | |
config: ct.yaml | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.lint.outputs.changed == 'true' | |
with: | |
config: kind-config.yaml | |
cluster_name: "pgadmin4" | |
- name: Run chart-testing (install) | |
uses: helm/[email protected] | |
with: | |
command: install | |
config: ct.yaml |