From 2b8ba693d8c476f843e78d71ebcad04506f297ec Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 17 Jun 2020 11:06:06 -0500 Subject: [PATCH] Add Setup Actions --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b4c4f4..1206de5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,9 +9,15 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v1 - - name: Android + name: Checkout Code + - name: Setup MSBuild.exe + uses: warrenbuckley/Setup-MSBuild@v1 + - name: Setup NuGet.exe for use with actions + uses: NuGet/setup-nuget@v1.0.2 + - name: Restore NuGet Packages + run: nuget restore + - name: Build Android Application run: | - nuget restore cd Droid msbuild qController.Droid.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug