Skip to content

Fix infinite loop in PatchDetector and Swift 6.2 strict concurrency e… #215

Fix infinite loop in PatchDetector and Swift 6.2 strict concurrency e…

Fix infinite loop in PatchDetector and Swift 6.2 strict concurrency e… #215

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
name: Build (${{ matrix.name }})
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: macOS (ARM64)
runner: macos-15
swift-version: "6.2"
- name: macOS (x86-64)
runner: macos-15-intel
swift-version: "6.2"
- name: Linux (x86-64)
runner: ubuntu-latest
swift-version: "6.2"
steps:
- uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v3
with:
swift-version: ${{ matrix.swift-version }}
# Workaround: GPG signature verification fails on Linux due to missing public key
skip-verify-signature: true
- name: Swift version
run: swift --version
- name: Build
run: swift build
- name: Test
run: swift test --parallel --skip Performance --skip Benchmark --skip MetalComputeTests