Skip to content

Commit

Permalink
Create build-win.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
taublast authored Sep 8, 2024
1 parent e101782 commit 556a6e8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build for Windows

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x

- name: Install MAUI workload
run: dotnet workload install maui

- name: Build
run: dotnet build src/DrawnUi.Maui.sln -c Release -f:net8.0-windows10.0.19041.0
- name: Test
run: dotnet test --no-build --verbosity normal

0 comments on commit 556a6e8

Please sign in to comment.