add github test #4
Workflow file for this run
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
on: push | |
jobs: | |
test-commit: | |
name: Test commit | |
runs-on: ubuntu-24.04 | |
steps: | |
# setup | |
- name: Install deps | |
run: | | |
sudo apt-get update -qy && | |
sudo apt-get install -qy podman>=4.4 | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Podman socket | |
run: systemctl --user start podman.socket | |
# test kube config | |
- name: Test kube config | |
run: ./test-kube.sh | |
timeout-minutes: 1 |