From 04bc161987f8bf0556b4817ceb6c3bd43ee0213a Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 17 Jun 2020 11:17:04 -0500 Subject: [PATCH] Add iOS project back into action --- .github/workflows/main.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1206de5..7fdf101 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,19 @@ jobs: uses: NuGet/setup-nuget@v1.0.2 - name: Restore NuGet Packages run: nuget restore - - name: Build Android Application + - name: Build Application run: | cd Droid msbuild qController.Droid.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug + iOS: + runs-on: macos-latest + steps: + - uses: actions/checkout@v1 + - name: iOS + - name: Restore NuGet Packages + run: nuget restore + - name: Build Application + run: | + cd iOS + msbuild qController.iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug