This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
Unmaintained note in README #916
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: "Test [old]" | |
on: | |
- push | |
- pull_request | |
env: | |
helm-version: v3.11.0 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test if Chart.yaml has been touched | |
id: single_chart_changed | |
run: echo "::set-output name=changes::$(git diff-tree --no-commit-id --name-only -r ${{ github.sha }} charts/timescaledb-single/Chart.yaml)" | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.single_chart_changed.outputs.changes != '' | |
- uses: azure/setup-kubectl@v3 | |
id: install-kubectl | |
if: steps.single_chart_changed.outputs.changes != '' | |
- uses: azure/[email protected] | |
id: install-helm | |
if: steps.single_chart_changed.outputs.changes != '' | |
with: | |
version: ${{ env.helm-version }} | |
- name: Test all available values files clusters | |
run: make test | |
if: steps.single_chart_changed.outputs.changes != '' |