first test
Some checks are pending
Hello World CI / hello (push) Waiting to run

This commit is contained in:
Crizomb 2025-12-21 21:30:32 +01:00
commit 03b09de3ac
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,15 @@
name: Hello World CI
on:
push:
workflow_dispatch:
jobs:
hello:
runs-on: linux
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run hello script
run: ./hello.sh

4
hello.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
echo "👋 Hello from Forgejo Runner!"
echo "Running on host: $(hostname)"
echo "Date: $(date)"