Improved Error Handling (#277) #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS Integration Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GPR_USER: ${{ secrets.GITHUB_ACTOR }} | |
jobs: | |
ios-tests: | |
name: iOS Tests | |
# macos-14 currently breaks colima | |
runs-on: macos-13 | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.2' | |
- name: Checkout project sources | |
uses: actions/checkout@v3 | |
- name: Install docker | |
run: brew install docker docker-compose colima | |
- name: Start colima | |
run: colima start | |
- name: Start Docker containers | |
run: dev/up | |
# retries are added due to test failures with dependencies | |
- name: Run tests | |
run: script/run_tests.sh | |
- name: Stop local test server | |
run: docker-compose -p xmtp-ios -f dev/local/docker-compose.yml down |