Skip to content

Merge pull request #21 from Iron-Ham/fix/git-timeout-resource-leaks #23

Merge pull request #21 from Iron-Ham/fix/git-timeout-resource-leaks

Merge pull request #21 from Iron-Ham/fix/git-timeout-resource-leaks #23

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:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode 26.1
run: xcodes select 26.1.1
- name: Build
run: swift build -v
# For now: Don't run tests, since I don't think GitHub Actions enables FoundationModels
# - name: Run tests
# run: swift test -v