Skip to content

Left out from previous PR #30

Left out from previous PR

Left out from previous PR #30

Workflow file for this run

name: Build and test on macOS and Ubuntu
on:
pull_request:
branches: [ "main" ]
jobs:
build-and-test-macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Build on macOS
run: swift build
- name: Test on macOS
run: swift test
build-and-test-ubuntu:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Swift on Ubuntu
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.9'
- name: Build on Ubuntu
run: swift build
- name: Test on Ubuntu
run: swift test