Add support for other podman runtimes #56
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
name: test | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
test: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: test | |
if: true | |
run: | | |
echo "Shared environment storage:" | |
ls -l /_environment || true | |
echo "" | |
echo "Process list" | |
ps -edalf | |
echo "" | |
echo "RUNNER_ variables" | |
env | grep RUNNER_ | |
echo "" | |
echo "Docker Containers" | |
docker ps -a | |
docker run --rm hello-world |