Skip to content

Clarify performance comparison table in README. #94

Clarify performance comparison table in README.

Clarify performance comparison table in README. #94

Workflow file for this run

name: Tests
on: [push]
# TODO: Add Windows job after Swift is added to the Windows images [1] or after
# `swift-actions/setup-swift` supports Swift 5.8+ on Windows [2].
# 1. https://github.com/actions/runner-images/issues/8281
# 2. https://github.com/swift-actions/setup-swift/pull/470#issuecomment-1718406382
jobs:
test-macos:
name: Run Tests on macOS
runs-on: macos-latest
steps:
- name: Install msgpack-c
run: |
brew update
brew install msgpack
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Print Swift compiler version
run: "swift --version"
- uses: actions/checkout@v3
- name: Run tests
run: "swift test --configuration release -Xswiftc -cross-module-optimization"
test-linux:
name: Run Tests on Linux
runs-on: ubuntu-latest
steps:
- name: Install msgpack-c
run: |
sudo apt-get update
sudo apt-get install libmsgpack-dev
- name: Print Swift compiler version
run: "swift --version"
- uses: actions/checkout@v3
- name: Run tests
run: "swift test --configuration release -Xswiftc -cross-module-optimization"