Skip to content

Improve object diffing tools #429

Improve object diffing tools

Improve object diffing tools #429

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:
macos-14:
name: macOS 14 (Xcode ${{ matrix.xcode }})
runs-on: macOS-13
strategy:
matrix:
xcode:
- '15.2'
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Print Swift version
run: swift --version
- name: Run tests (Swift)
run: make test-swift
- name: Run tests (platforms)
run: make test-platforms
macos-13:
name: macOS 13 (Xcode ${{ matrix.xcode }})
runs-on: macOS-13
strategy:
matrix:
xcode:
- '14.3.1'
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Print Swift version
run: swift --version
- name: Run tests (Swift)
run: make test-swift
- name: Run tests (platforms)
run: make test-platforms
linux:
name: Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
swift:
- '5.10'
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make test-linux SWIFT_VERSION=${{ matrix.swift }}
wasm:
name: SwiftWasm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: swiftwasm/[email protected]
with:
shell-action: carton test --environment node
windows:
name: Windows
strategy:
matrix:
os: [windows-latest]
config: ['debug', 'release']
runs-on: ${{ matrix.os }}
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.10-release
tag: 5.10-RELEASE
- uses: actions/checkout@v4
- name: Build All Configurations
run: swift build -c ${{ matrix.config }}
- name: Run tests (debug only)
run: swift test