mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-05 09:01:11 +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
|