Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
tlocke committed Sep 29, 2024
1 parent ea7accd commit 8b64ca9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ jobs:
apt -y install podman
- name: Check Podman version
run: podman --version
- name: Create a directory to mount
run: |
mkdir -p /tmp/my-mount-dir
echo "Hello from GitHub Actions" > /tmp/my-mount-dir/hello.txt
- name: Run Podman container with mount
run: |
podman run --name my-container -d --mount type=bind,source=/tmp/my-mount-dir,target=/mnt docker.io/library/postgres:latest
- name: Run test
run: |
podman run \
Expand Down

0 comments on commit 8b64ca9

Please sign in to comment.