Skip to content

Commit

Permalink
Added UTS workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
maratal committed Nov 17, 2024
1 parent 24f9cf3 commit 18ca1aa
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/unified-test-suite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Unified Test Suite

on:
pull_request:
push:
branches:
- main

jobs:
unified-test-suite:
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20

- run: npm ci

- name: Install uts-chat globally
run: npm install -g @ably-labs/uts-chat

# This step can be removed once the runners' default version of Xcode is 16 or above
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16

- name: Prepare Adapter
working-directory: UTSChatAdapter
run: swift build --target Adapter

- name: Run uts-chat with ADAPTER_EXECUTABLE
env:
ADAPTER_EXECUTABLE: cd UTSChatAdapter && swift run UTSChatAdapter
run: uts-chat

0 comments on commit 18ca1aa

Please sign in to comment.