Deployment target 11+ and tvOS availability #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
push: | |
branches: [ void ] | |
pull_request: | |
branches: [ void ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build for macOS | |
run: swift build -v | |
- name: Run tests for macOS | |
run: swift test -v | |
- name: Build for iOS | |
run: xcodebuild build -sdk iphoneos -scheme 'WrappingStack' -destination 'name=iPhone 8' | |
- name: Run tests for iOS | |
run: xcodebuild test -destination 'name=iPhone 8' -scheme "WrappingStack" |