remove integration tests #13
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: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-darwin: | |
runs-on: macos-latest | |
steps: | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.22.0" | |
- name: Check out Code | |
uses: actions/[email protected] | |
- name: Build | |
run: go build -v -o kubectl-browse-pvc . | |
- name: Fix permissions | |
run: chmod +x ./kubectl-browse-pvc | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kubectl-browse-pvc-darwin | |
path: | | |
./kubectl-browse-pvc | |
LICENSE | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.22.0" | |
- name: Check out Code | |
uses: actions/[email protected] | |
- name: Build | |
run: go build -v -o kubectl-browse-pvc . | |
- name: Fix permissions | |
run: chmod +x ./kubectl-browse-pvc | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kubectl-browse-pvc-linux | |
path: | | |
./kubectl-browse-pvc | |
LICENSE | |
# integration-tests: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Create KIND Cluster | |
# uses: helm/[email protected] | |
# with: | |
# cluster_name: testing | |
# - name: Get cluster info | |
# run: | | |
# kubectl cluster-info | |
# kubectl get nodes | |
# - name: Check out Code | |
# uses: actions/[email protected] | |
# - name: Download Artifacts | |
# uses: actions/download-artifact@v4 | |