feat: add OptionalPolymorphicLossyArrayValue property wrapper #40
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |