simplify
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Waylon Walker 2025-08-28 12:47:16 -05:00
parent 221a1380b0
commit 9d14d28d63

View file

@ -3,16 +3,9 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4
- name: Run something in Alpine - name: Run something in Alpine
uses: docker://alpine:3.20 uses: docker://alpine:3.20
with: with:
entrypoint: ["/bin/sh", "-c"] args: echo "Hello from inside Alpine"
args: |
echo "Hello from inside Alpine"
- name: Run something in ArchBtw
uses: docker://archlinux:base
with:
entrypoint: ["/bin/sh", "-c"]
args: |
echo "Hello from inside ArchBtw"
- run: echo "Back on the host runner again" - run: echo "Back on the host runner again"