This repository was archived by the owner on Jan 25, 2026. It is now read-only.
chore: 调整部分 Core 文件结构 #34
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.editorconfig' | |
| - 'README.md' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.editorconfig' | |
| - 'README.md' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - configuration: Debug | |
| architecture: x64 | |
| - configuration: Debug | |
| architecture: ARM64 | |
| fail-fast: true | |
| uses: ./.github/workflows/reusable_build.yml | |
| with: | |
| configuration: ${{ matrix.configuration }} | |
| architecture: ${{ matrix.architecture }} | |
| secrets: inherit |