Update demos for version 5.3.1 #174
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Xamarin | |
# Note: using the `branches` selector excludes all tags | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
android: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Android | |
run: | | |
cd xamarin | |
nuget restore | |
cd SimpleDemo.Forms.Android | |
msbuild SimpleDemo.Forms.Android.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug | |
ios: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: iOS | |
run: | | |
cd xamarin | |
nuget restore | |
msbuild SimpleDemo.Forms.iOS/SimpleDemo.Forms.iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug |