implement terminalsizequeue #3
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/setup-go@v4.1.0 | |
with: | |
go-version: "1.20.5" | |
- name: Check out Code | |
uses: actions/checkout@v4.0.0 | |
- 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@v3.1.3 | |
with: | |
name: kubectl-browse-pvc-darwin | |
path: | | |
./kubectl-browse-pvc | |
LICENSE | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: "1.20.5" | |
- name: Check out Code | |
uses: actions/checkout@v4.0.0 | |
- 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@v3.1.3 | |
with: | |
name: kubectl-browse-pvc-linux | |
path: | | |
./kubectl-browse-pvc | |
LICENSE | |
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 | |
kubectl get nodes | |
- name: Check out Code | |
uses: actions/checkout@v4.0.0 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |