Skip to content

Resolution reporting to Behavior #925

Resolution reporting to Behavior

Resolution reporting to Behavior #925

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-knit-swift:
runs-on: macos-latest
strategy:
matrix:
xcode-version: ["16.4", "26.0.1"]
steps:
- uses: actions/checkout@v4
- name: Select Xcode Version
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode-version }}.app
- name: Build Knit (Xcode ${{ matrix.xcode-version }})
run: swift build -v
- name: Run Knit tests (Xcode ${{ matrix.xcode-version }})
run: swift test -v