Skip to content

Updated config for android #4

Updated config for android

Updated config for android #4

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build Android & iOS
on:
push:
branches: [ "ci-config" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install workloads
run: dotnet workload restore
- name: Build Android
run: dotnet build -c Release -f net7.0-android
- name: Build iOS
run: dotnet build -c Release -f net7.0-ios