Skip to content

Commit

Permalink
Add automated test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrfennell committed Jan 17, 2025
1 parent f04a3d9 commit 60beff7
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run automated tests

on:
pull_request:
branches:
- beta
- stable

jobs:
run_tests:
runs-on: macos-latest
name: Run automated tests
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build rust
run: ./rust/build-rust.sh
- name: Install pods
working-directory: Monal
run: pod install --repo-update
- name: Run tests
working-directory: Monal
run: |
xcodebuild \
-workspace Monal.xcworkspace \
-scheme Monal \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' \
test

0 comments on commit 60beff7

Please sign in to comment.