Skip to content

Bump Xamarin.Essentials.Interfaces from 1.7.4 to 1.7.7 #178

Bump Xamarin.Essentials.Interfaces from 1.7.4 to 1.7.7

Bump Xamarin.Essentials.Interfaces from 1.7.4 to 1.7.7 #178

Workflow file for this run

name: Xamarin
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
BuildAndroidApp:
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'
- name: Restore NuGet
run: |
nuget restore
- name: Build Android App
run: |
AndroidProject=`find . -name AsyncCommandSample.Android.csproj`
echo $AndroidProject
msbuild $AndroidProject /verbosity:normal /p:Configuration=Release
RunUnitTests:
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'
- name: Run Unit Tests
run: |
UnitTestProject=`find . -name AsyncCommandSample.UnitTests.csproj`
echo $UnitTestProject
dotnet test -c Release $UnitTestProject