From a7a43c7ddd32f102d7e4ccb4180ca483c56e37b7 Mon Sep 17 00:00:00 2001 From: Dan Siegel Date: Mon, 23 Sep 2024 17:12:27 -0600 Subject: [PATCH] ci: adding CI build --- .github/workflows/pr.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..af1c907 --- /dev/null +++ b/.github/workflows/pr.yml @@ -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