Bump Xamarin.Forms from 5.0.0.2612 to 5.0.0.2622 in /Source #278
Workflow file for this run
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: Solution | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET v6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
include-prerelease: true | |
- name: Setup .NET Core v3.1 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Restore NuGet | |
run: dotnet restore ./Source | |
- name: Build Android | |
run: msbuild ./Source/DotNetGraphQL.Mobile.Android /restore | |
- name: Build API | |
run: dotnet build ./Source/DotNetGraphQL.API -c Release |