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: jobs:
ipv6: print-hello-world:
runs-on: docker runs-on: alpine:latest
steps: steps:
- run: | - name: Print Hello World
apt update; apt install --yes curl run: echo "Hello, World!"
curl -s -o /dev/null http://ipv6.google.com