Skip to content

feat(realtime): general Realtime improvements and tests #150

feat(realtime): general Realtime improvements and tests

feat(realtime): general Realtime improvements and tests #150

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
library:
runs-on: macos-13
name: Test Library
steps:
- uses: actions/checkout@v3
- name: Select Xcode 15.0.1
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Run tests
run: make test-library
examples:
runs-on: macos-13
name: Build Examples
steps:
- uses: actions/checkout@v3
- name: Select Xcode 15.0.1
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Build examples
run: make build-examples