Added custom homelab configuration #52
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: CI | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "**" | |
jobs: | |
test-kubernetes: | |
name: Test Kubernetes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: sudo bash kubernetes.sh | |
- name: Test override version | |
run: sudo KUBECTL_VERSION=v1.25.4 bash kubernetes.sh | |
test-k9s: | |
name: Test k9s | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: sudo bash k9s.sh | |
- name: Test k9s version | |
run: sudo K9S_VERSION=v0.32.4 bash k9s.sh |