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 + +