Files
c-projects/.gitea/workflows/hello.yml
Abdelrahman c0827fcf38
All checks were successful
Hello World / test (push) Successful in 8s
Test workflow
2026-03-08 22:41:18 +00:00

19 lines
291 B
YAML

name: Hello World
on:
push:
branches:
- main # or your default branch
jobs:
test:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Print Hello World
run: |
echo "Hello, Gitea runner!"