Skip to content

Make database access faster #31

Make database access faster

Make database access faster #31

Workflow file for this run

name: Run automated tests
on:
pull_request:
branches:
- develop
- beta
- stable
push:
branches:
- develop
permissions: {}
jobs:
run_tests:
runs-on: macos-latest
name: Run automated tests
steps:
- uses: actions/checkout@v4
with:
clean: true
submodules: true
fetch-depth: 100
fetch-tags: true
show-progress: true
lfs: true
- name: Checkout submodules
run: git submodule update -f --init --remote
- name: Build rust
run: bash ./rust/build-rust.sh
- name: Install pods
working-directory: Monal
run: pod install --repo-update
- name: Run tests
working-directory: Monal
run: |
set -o pipefail && \
NSUnbufferedIO=YES xcodebuild \
-workspace Monal.xcworkspace \
-scheme Monal \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' \
test \
2>&1 | \
xcbeautify --renderer github-actions