action-test/.forgejo/workflows/demo.yaml
Neshura d17a5c9924
Some checks failed
/ test-docker (push) Successful in 6s
/ test-dind (push) Failing after 5s
remove sudo from dind test as not present in dind container
2023-11-16 16:38:16 +00:00

10 lines
172 B
YAML

on: [push]
jobs:
test-docker:
runs-on: docker
steps:
- run: echo Docker works!
test-dind:
runs-on: dind
steps:
- run: docker run hello-world