test: add test workflow
Some checks failed
Build and Push to Zot / build-and-push (push) Failing after 1s

This commit is contained in:
2026-01-10 21:25:53 +09:00
parent e62cb61abd
commit 3e6cad692d

View File

@@ -0,0 +1,16 @@
name: Test Runner
on:
workflow_dispatch:
jobs:
test:
runs-on: k3s-home
steps:
- name: Test kubectl
run: |
echo "Testing kubectl..."
kubectl version --client
kubectl get pods -n gitea
echo "GITHUB_SHA: $GITHUB_SHA"
echo "Done!"