Skip to content

Expose ServerInfo

Expose ServerInfo #45

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
jobs:
apple_test:
name: Test
runs-on: macOS-13
strategy:
matrix:
destination:
- "platform=macOS"
- "platform=iOS Simulator,name=iPhone 12"
steps:
- uses: actions/checkout@v3
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme LanguageClient -destination "${{ matrix.destination }}" test | xcpretty
linux_test:
name: Test Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: swift test
run: swift test