修改流水线:ci_check

This commit is contained in:
co63oc 2026-07-07 13:53:19 +08:00
parent c2d3abcec9
commit 5e7a352f6f
1 changed files with 19 additions and 8 deletions

View File

@ -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: ''
check:
uses: ./.github/workflows/check.yml
build:
needs: check
uses: ./.github/workflows/build.yml
test:
needs: check
uses: ./.github/workflows/test.yml
~