From f02f52c29fc0ff58d6afdc06b4547807728af743 Mon Sep 17 00:00:00 2001 From: ayuriel Date: Sat, 29 Mar 2025 10:33:11 +0900 Subject: [PATCH] chore: build test --- .gitea/workflows/build.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..1d37e6f --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,9 @@ +name: CI Build +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: echo "Building the project..." + - run: python -m unittest discover # 예: Python 테스트 실행 \ No newline at end of file