Skip to content

Sendable support (#30) #54

Sendable support (#30)

Sendable support (#30) #54

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
name: MacOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make test-swift
- name: Run tests
run: make build-release-swift
ubuntu:
strategy:
matrix:
swift:
- '5.9'
name: Ubuntu (Swift ${{ matrix.swift }})
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
steps:
- uses: actions/checkout@v4
- name: Run tests
run: swift test --parallel
- name: Run tests (release)
run: swift test -c release --parallel