From 694d8a9a769e1f590606dd062aef53baa31fbe68 Mon Sep 17 00:00:00 2001 From: Clay Buxton Date: Fri, 12 Jan 2024 17:58:41 -0500 Subject: [PATCH] starting test work --- .github/workflows/test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..1b3b3aa --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Build kubectl-browse-pvc + +on: + push: + branches: + - main + +jobs: + # unit-tests: + integration-tests: + runs-on: ubuntu-latest + steps: + - name: Create KIND Cluster + uses: helm/kind-action@v1.5.0 + with: + cluster_name: testing + - name: Get cluster info + run: kubectl cluster-info + +