Files
test-repo/.gitea/workflows/ci-test.yml
LuiiCode e42b29ec5d
Some checks failed
Simple CI Test / test (push) Failing after 0s
Simple shell workflow test
2026-05-24 12:34:42 +02:00

18 lines
290 B
YAML

name: Simple CI Test
on:
push:
branches: [main]
jobs:
test:
runs-on: linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Echo test
run: |
echo "Hello from Gitea Runner!"
echo "Workspace: $(pwd)"
ls -la