This repository was archived by the owner on Jan 25, 2026. It is now read-only.
feat(custom-page): 同步上游自定义主页更新 #1117
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: | |
| - "*/**" | |
| - "PCL.Core.csproj" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "*/**" | |
| - "PCL.Core.csproj" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: 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 |