fix: remove redundant NU1510 PackageReference pins in TodoApp.Uno #50
Workflow file for this run
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 Samples | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: [ 'samples/**', '.github/workflows/build-samples*.yml' ] | |
| pull_request: | |
| branches: [ main ] | |
| paths: [ 'samples/**', '.github/workflows/build-samples*.yml' ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| datasync-server: | |
| uses: ./.github/workflows/build-samples-datasync-server.yml | |
| datasync-server-cosmosdb: | |
| uses: ./.github/workflows/build-samples-datasync-server-cosmosdb.yml | |
| todoapp-mvc: | |
| uses: ./.github/workflows/build-samples-todoapp-mvc.yml | |
| todoapp-blazor-wasm: | |
| uses: ./.github/workflows/build-samples-todoapp-blazor-wasm.yml | |
| todoapp-tutorial: | |
| uses: ./.github/workflows/build-samples-todoapp-tutorial.yml | |
| todoapp-avalonia: | |
| uses: ./.github/workflows/build-samples-todoapp-avalonia.yml | |
| todoapp-windows: | |
| uses: ./.github/workflows/build-samples-todoapp-windows.yml | |
| todoapp-maui: | |
| uses: ./.github/workflows/build-samples-todoapp-maui.yml | |
| todoapp-uno: | |
| uses: ./.github/workflows/build-samples-todoapp-uno.yml | |
| # Single aggregation point so branch protection only needs to require one check, | |
| # regardless of how many sample workflows are added over time. | |
| all-samples-built: | |
| name: All samples built | |
| if: always() | |
| needs: | |
| - datasync-server | |
| - datasync-server-cosmosdb | |
| - todoapp-mvc | |
| - todoapp-blazor-wasm | |
| - todoapp-tutorial | |
| - todoapp-avalonia | |
| - todoapp-windows | |
| - todoapp-maui | |
| - todoapp-uno | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check sample build results | |
| run: | | |
| if [ "${{ contains(needs.*.result, 'failure') }}" = "true" ] || [ "${{ contains(needs.*.result, 'cancelled') }}" = "true" ]; then | |
| echo "One or more sample builds failed." | |
| exit 1 | |
| fi | |
| echo "All samples built successfully." |