Skip to content

breaking integration tests off into a subpackage #6

breaking integration tests off into a subpackage

breaking integration tests off into a subpackage #6

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: macos-14
# runner images reference info:
# https://github.com/actions/runner-images/tree/main/images/macos
steps:
- uses: actions/checkout@v3
- name: get xcode information
run: |
xcodebuild -version
swift --version
- name: Swift tests
run: swift test
- name: Integration tests
run: |
cd IntegrationTests
swift test