Reintroduce conditional import #218
Workflow file for this run
This file contains 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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
library: | |
name: macOS | |
strategy: | |
matrix: | |
xcode: ['15.4'] | |
config: ['debug', 'release'] | |
runs-on: macos-14 | |
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 }} | |
- name: Run compatibility tests | |
run: make test-compatibility | |
if: ${{ matrix.config == 'debug' }} | |
linux: | |
name: Linux | |
strategy: | |
matrix: | |
swift: | |
- '6.0' | |
runs-on: ubuntu-latest | |
container: swift:${{ matrix.swift }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swift build | |
wasm: | |
name: Wasm | |
runs-on: ubuntu-latest | |
container: swift:6.0.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bytecodealliance/actions/wasmtime/setup@v1 | |
- name: Install Swift SDK for WebAssembly | |
run: swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.2-RELEASE/swift-wasm-6.0.2-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 6ffedb055cb9956395d9f435d03d53ebe9f6a8d45106b979d1b7f53358e1dcb4 | |
- name: Build | |
run: swift build --triple wasm32-unknown-wasi | |
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 | |
with: | |
run-tests: false | |
major-versions-only: true |