Add CI workflow for test runner
All checks were successful
Test Runner / check-runner (push) Successful in 0s

This commit is contained in:
2025-09-05 11:39:39 +09:00
parent 6103518feb
commit 41aebd54d4

12
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,12 @@
name: Test Runner
on:
push:
branches: ["main"]
jobs:
check-runner:
runs-on: [ubuntu-latest] # 러너 라벨과 일치해야 함
steps:
- name: Print hello
run: echo "✅ Runner is working!"