Update .forgejo/workflows/helloworld.yml
Some checks failed
Hello World CI / print-hello-world (push) Has been cancelled

This commit is contained in:
sohrab 2025-02-11 14:08:01 -05:00
parent b7958216d2
commit 5dccef8bf5

View file

@ -1,8 +1,13 @@
on: push
name: Hello World CI
on:
push:
branches:
- main
jobs:
ipv6:
runs-on: docker
print-hello-world:
runs-on: alpine:latest
steps:
- run: |
apt update; apt install --yes curl
curl -s -o /dev/null http://ipv6.google.com
- name: Print Hello World
run: echo "Hello, World!"