Skip to content

Merge pull request #180 from christianhelle/renovate/fluentassertions… #122

Merge pull request #180 from christianhelle/renovate/fluentassertions…

Merge pull request #180 from christianhelle/renovate/fluentassertions… #122

Workflow file for this run

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