Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Unmaintained note in README #919

Unmaintained note in README

Unmaintained note in README #919

Workflow file for this run

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 != ''