add alpine test
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Podman Test / podman-job (push) Has been cancelled

This commit is contained in:
b0xxer 2025-04-17 09:10:40 -05:00
parent e671a350b4
commit a7769c1d2a

14
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,14 @@
name: Podman Test
on: [push]
jobs:
podman-job:
runs-on: podman_linux
container:
image: alpine:latest
options: --security-opt label=disable --security-opt seccomp=unconfined
steps:
- name: Verify Podman
run: |
podman --version
podman run --rm docker.io/library/hello-world