Skip to content

Commit

Permalink
ci: adding CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Sep 23, 2024
1 parent da2e1d2 commit a7a43c7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build_samples_maui

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-sample:
strategy:
fail-fast: false
matrix:
solution-path: [
'sample-template',
]
uses: avantipoint/workflow-templates/.github/workflows/dotnet-build.yml@master
with:
runs-on: macos-latest
name: Build ${{ matrix.solution-path }}
solution-path: ${{ matrix.solution-path }}/PrismSample.sln
dotnet-version: 8.0.x
install-workload: maui maui-adndroid maui-ios
build-configuration: Debug
artifact-name: ${{ matrix.solution-path }}
run-tests: false

0 comments on commit a7a43c7

Please # to comment.