Skip to content

Merge pull request #4 from NeedleInAJayStack/ci/versions #14

Merge pull request #4 from NeedleInAJayStack/ci/versions

Merge pull request #4 from NeedleInAJayStack/ci/versions #14

Workflow file for this run

name: test
on:
pull_request:
push: { branches: [ main ] }
jobs:
macos-test:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
- uses: actions/checkout@v4
- name: Darwin build & test
run: swift test --skip IntegrationTests
linux-test:
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v4
- name: Linux build & test
run: swift test --skip IntegrationTests