Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
branches: [ main ]

jobs:
build:

build-macos:
name: Build and test on macOS
runs-on: macos-latest

steps:
Expand All @@ -22,3 +22,15 @@ jobs:
run: swift build -v
- name: Run tests
run: swift test -v

build-ubuntu:
name: Build and test on Ubuntu
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v