docker-test/.forgejo/workflows/helloworld.yml
sohrab d5c571999c
All checks were successful
Hello World CI / print-hello-world (push) Successful in 8s
Update .forgejo/workflows/helloworld.yml
2025-02-11 14:09:38 -05:00

15 lines
No EOL
225 B
YAML

name: Hello World CI
on:
push:
branches:
- main
jobs:
print-hello-world:
runs-on: docker
container:
image: alpine:3.20
steps:
- name: Print Hello World
run: echo "Hello, World!"