-
Notifications
You must be signed in to change notification settings - Fork 30
61 lines (52 loc) · 1.3 KB
/
build-validation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: build
on:
push:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'
- '**.xaml'
- '**.razor'
pull_request:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'
- '**.xaml'
- '**.razor'
env:
DOTNET_VERSION: '9.0.x' # The .NET SDK version to use
jobs:
build:
name: Build All Projects
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
project:
- Finish
- Part 1 - Displaying Data
- Part 2 - Add Monkey Dialog
- Part 3 - Navigation
- Part 4 - Platform Features
- Part 5 - Theming the app
- Part 6 - Advanced Topics
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
with:
vs-prerelease: true
- name: Install .NET workloads
shell: pwsh
run: |
dotnet workload install android
dotnet workload install ios
dotnet workload install maccatalyst
dotnet workload install maui
- name: Build ${{ matrix.project }}
run: dotnet build "${{ matrix.project }}/MonkeyFinderHybrid/MonkeyFinderHybrid.csproj"