Update README.md #506
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: CI | |
on: [push] | |
jobs: | |
Android: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1 | |
- name : restore LocalNotification.Sample.sln | |
run: nuget restore Sample/NuGet/LocalNotification.Sample.sln | |
- name: build LocalNotification.Sample.Android.csproj | |
run: msbuild Sample/NuGet/LocalNotification.Sample.Android/LocalNotification.Sample.Android.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug | |
iOS: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name : restore LocalNotification.Sample.sln | |
run: nuget restore Sample/NuGet/LocalNotification.Sample.sln | |
- name: build LocalNotification.Sample.iOS.csproj | |
run: msbuild Sample/NuGet/LocalNotification.Sample.iOS/LocalNotification.Sample.iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug | |