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