From 754fcc5242808b9989d046d4e8237425639f4eeb Mon Sep 17 00:00:00 2001 From: cooney Date: Thu, 2 Apr 2026 21:34:20 +0900 Subject: [PATCH] Update .gitea/workflows/test.yaml --- .gitea/workflows/test.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 91cb448..25be929 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -1,10 +1,11 @@ -name: Native Runner Test +name: Final Unity Check on: [push] jobs: - test-job: - runs-on: ubuntu-latest # 아까 등록한 라벨 + check: + runs-on: ubuntu-latest # 민구님의 네이티브 러너 라벨 steps: - - name: Hello World + - name: Unity Engine Check run: | - echo "드디어 성공했습니다!" - uname -a \ No newline at end of file + ~/Unity/Hub/Editor/6000.2.15f1/Editor/Unity -batchmode -version -quit + - name: Simple Log + run: echo "유니티 엔진이 정상적으로 호출되었습니다!" \ No newline at end of file