From f182ccbcc44e38e85fc2fa01abc2bc89f2f5c62e Mon Sep 17 00:00:00 2001 From: TtiPo Date: Sun, 19 Jul 2026 05:00:39 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9F=AC=EB=84=88=20=EB=8F=99=EC=9E=91=20?= =?UTF-8?q?=ED=99=95=EC=9D=B8=EC=9A=A9=20=EC=9E=84=EC=8B=9C=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=9B=8C=ED=81=AC=ED=94=8C=EB=A1=9C?= =?UTF-8?q?=EC=9A=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .gitea/workflows/ci-test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/ci-test.yml diff --git a/.gitea/workflows/ci-test.yml b/.gitea/workflows/ci-test.yml new file mode 100644 index 00000000..a5377d28 --- /dev/null +++ b/.gitea/workflows/ci-test.yml @@ -0,0 +1,17 @@ +# 러너 동작 확인용 임시 워크플로우 — 확인 후 삭제 예정 +name: CI Test + +on: + push: + branches: [main] + +jobs: + test: + runs-on: deploy + steps: + - name: Hello + run: | + echo "hello from runner" + whoami + pwd + docker version --format '{{.Server.Version}}'