Skip to content

feat: add OptionalPolymorphicLossyArrayValue property wrapper #40

feat: add OptionalPolymorphicLossyArrayValue property wrapper

feat: add OptionalPolymorphicLossyArrayValue property wrapper #40

Workflow file for this run

name: CI
on:
pull_request:
paths:
- "Package.swift"
- "Package.resolved"
- "Sources/**"
- "Tests/**"
workflow_dispatch:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_and_test:
name: Build and Test
runs-on: macos-15
strategy:
matrix:
xcode: ['16.4']
config: ['debug', 'release']
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run ${{ matrix.config }} tests
run: swift test -c ${{ matrix.config }}
check-macro-compatibility:
name: Check Macro Compatibility
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Swift Macro Compatibility Check
uses: Matejkob/swift-macro-compatibility-check@v1