Skip to content

Commit

Permalink
ci(.NET) Add CI job to build .Net demo app
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-tgl committed Nov 28, 2023
1 parent 9845b17 commit 71edb18
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/dotnet-maui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: DotNetMaui

# Note: using the `branches` selector excludes all tags
on:
push:
branches:
- '**'

jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Build demo
run: |
cd dotnet-maui
sudo dotnet workload restore
dotnet build SimpleDemo.csproj
4 changes: 4 additions & 0 deletions dotnet-maui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vs/

bin/
obj/

0 comments on commit 71edb18

Please sign in to comment.