Skip to content

Intall Python 3.12 first #102

Intall Python 3.12 first

Intall Python 3.12 first #102

Workflow file for this run

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
runs-on: macos-14
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2'
- name: Checkout project sources
uses: actions/checkout@v3
- name: Cleanup Homebrerw
run: brew update && brew upgrade && brew cleanup
- name: Install python
run: brew install [email protected]
# - name: Install python
# run: brew install [email protected] || true
#
# - name: Install colima
# run: brew install colima
#
# - name: Install docker
# run: brew install docker docker-compose
#
# - 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