Skip to content

Sendable and Multicast improvements #26

Sendable and Multicast improvements

Sendable and Multicast improvements #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- '**.swift'
- '**.yml'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-ci
cancel-in-progress: true
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
image: ["swift:5.9", "swift:5.10", "swift:6.0", "swiftlang/swift:nightly-6.1-jammy"]
container:
image: ${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: |
swift test
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: swift test