From 3fea48472ff4f9baca2420905adf8619a48ba1c7 Mon Sep 17 00:00:00 2001 From: Jeffery Date: Fri, 17 Jul 2026 18:26:49 +0800 Subject: [PATCH] =?UTF-8?q?chore(ci.yaml):=20=E5=A2=9E=E5=8A=A0=E5=A4=9A?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=20code=20review=20=E9=A9=97=E8=AD=89?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yaml | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 13b110f..05a4103 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,13 +7,39 @@ on: types: [opened, synchronize] jobs: - test: - name: TEST + test-antigravity: + name: TEST (Antigravity) runs-on: ubuntu steps: - name: 取得存取庫資訊 uses: actions/checkout@${{ vars.ACTION_CHECKOUT_VERSION }} - name: 安裝工具 + uses: https://gitea.jsc.idv.tw/composite-actions/setup-antigravity@${{ vars.ACTION_SETUP_ANTIGRAVITY_VERSION }} + - name: 程式碼審查 uses: ./ - - name: 取得工具版本號 - run: agy --version + with: + token: ${{ secrets.GITHUB_TOKEN }} + test-codex: + name: TEST (Codex) + runs-on: ubuntu + steps: + - name: 取得存取庫資訊 + uses: actions/checkout@${{ vars.ACTION_CHECKOUT_VERSION }} + - name: 安裝工具 + uses: https://gitea.jsc.idv.tw/composite-actions/setup-codex@${{ vars.ACTION_SETUP_CODEX_VERSION }} + - name: 程式碼審查 + uses: ./ + with: + token: ${{ secrets.GITHUB_TOKEN }} + test-claude: + name: TEST (Claude) + runs-on: ubuntu + steps: + - name: 取得存取庫資訊 + uses: actions/checkout@${{ vars.ACTION_CHECKOUT_VERSION }} + - name: 安裝工具 + uses: https://gitea.jsc.idv.tw/composite-actions/setup-claude@${{ vars.ACTION_SETUP_CLAUDE_VERSION }} + - name: 程式碼審查 + uses: ./ + with: + token: ${{ secrets.GITHUB_TOKEN }}