Skip to content

Clean build warnings and update with c#12 syntax #519

Clean build warnings and update with c#12 syntax

Clean build warnings and update with c#12 syntax #519

name: "Compile all views"
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
schedule:
- cron: '35 19 * * 4'
jobs:
analyze:
name: Analyze
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
targetplatform: [ x86, x64 ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install MAUI workload
run: dotnet workload install maui
- name: Compile Debug
run: ./build/build-windows.ps1 -configuration "Debug"