Merge pull request #180 from christianhelle/renovate/fluentassertions… #122
This file contains 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: Sample | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
windows-latest, | |
macos-latest | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: Install .NET MAUI workload | |
run: | | |
dotnet workload install maui --source https://api.nuget.org/v3/index.json | |
dotnet workload restore --project SampleApp.csproj | |
working-directory: sample/SampleApp/ | |
- name: Restore | |
run: dotnet restore sample/SampleApp/SampleApp.csproj | |
- name: Build | |
run: dotnet build sample/SampleApp/SampleApp.csproj |