1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-30 07:03:48 +00:00

try out github actions

This commit is contained in:
Kyle Spearrin
2020-06-05 13:51:57 -04:00
parent a4e0535464
commit 67a4646a50
2 changed files with 40 additions and 0 deletions

39
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,39 @@
name: Build
on: push
jobs:
android:
runs-on: windows-latest
steps:
- name: Print environment
run: |
echo 'TODO'
- name: Checkout repo
uses: actions/checkout@v2
- name: Build app
run: |
nuget restore
msbuild ./src/Android/Android.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug
ios:
runs-on: macos-latest
steps:
- name: Print environment
run: |
echo 'TODO'
- name: Checkout repo
uses: actions/checkout@v2
- name: Build app
run: |
nuget restore
msbuild ./src/iOS/iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug