Skip to content

Allocation-less marshaling for built-in and class types methods, and Callable changes #850

Allocation-less marshaling for built-in and class types methods, and Callable changes

Allocation-less marshaling for built-in and class types methods, and Callable changes #850

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-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "15.3"
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
build-windows:
runs-on: windows-latest
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.10-release
tag: 5.10-RELEASE
- uses: actions/checkout@v4
- name: Build
run: swift build -v