Skip to content

[Feature] Sendable Conformances #45

[Feature] Sendable Conformances

[Feature] Sendable Conformances #45

Workflow file for this run

name: Swift
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: swift build -v
test:
name: Test
needs: build
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: swift test -v