From 5e7a352f6f7a23e2fc37ff25e0d6e87e2d32a895 Mon Sep 17 00:00:00 2001 From: co63oc Date: Tue, 7 Jul 2026 13:53:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E6=B0=B4=E7=BA=BF?= =?UTF-8?q?=EF=BC=9Aci=5Fcheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci_check.yml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci_check.yml b/.gitea/workflows/ci_check.yml index d8cd3f2..aebaa63 100644 --- a/.gitea/workflows/ci_check.yml +++ b/.gitea/workflows/ci_check.yml @@ -1,9 +1,20 @@ -run-name: '' -name: '' +name: CI + +on: + push: + branches: [ main, develop ] + pull_request: + branches: [ main, develop ] + jobs: - actions: - runs-on: '' - steps: - - run: '' - - name: '' - uses: '' \ No newline at end of file + check: + uses: ./.github/workflows/check.yml + + build: + needs: check + uses: ./.github/workflows/build.yml + + test: + needs: check + uses: ./.github/workflows/test.yml +~ \ No newline at end of file