Bump System.Text.Json from 7.0.3 to 8.0.0 (#183) #186
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: GitHub Actions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/**' | |
jobs: | |
macOS: | |
runs-on: macOS-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 'true' | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.0.x' | |
- name: build | |
shell: bash | |
run: | | |
export PATH="$PATH:~/.dotnet/tools" | |
dotnet tool install --global boots | |
boots --preview Mono | |
boots --preview XamarinAndroid | |
export JI_JAVA_HOME="$JAVA_HOME_11_X64" | |
msbuild ./samples/HelloForms.Android/HelloForms.Android.csproj /restore /t:SignAndroidPackage | |
windows: | |
runs-on: windows-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 'true' | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: microsoft/[email protected] | |
- name: build | |
shell: pwsh | |
run: | | |
dotnet tool install --global boots | |
boots --preview XamarinAndroid | |
msbuild ./samples/HelloForms.Android/HelloForms.Android.csproj /restore /t:SignAndroidPackage |