learn-forgejo-actions/.forgejo/workflows/images-per-step.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 9: cannot unmarshal !!seq into string line 15: cannot unmarshal !!seq into string
Waylon S. Walker 221a1380b0
All checks were successful
/ test (push) Successful in 10s
try this
2025-08-28 12:45:39 -05:00

18 lines
496 B
YAML

on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Run something in Alpine
uses: docker://alpine:3.20
with:
entrypoint: ["/bin/sh", "-c"]
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"