action-test/.forgejo/workflows/demo.yaml
Neshura c1243d1439
Some checks failed
/ test-docker (push) Successful in 2s
/ test-dind (push) Failing after 6s
Add bash to dind template
2023-11-16 17:05:48 +00:00

11 lines
200 B
YAML

on: [push]
jobs:
test-docker:
runs-on: docker
steps:
- run: echo Docker works!
test-dind:
runs-on: dind
cmd: /sbin/apk add bash
steps:
- run: docker run hello-world