mirror of
https://github.com/bitwarden/mobile
synced 2024-12-25 00:12:24 +01:00
40 lines
739 B
YAML
40 lines
739 B
YAML
|
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
|