Skip to content

Updating workflows to work on current GitHub stack #12

Updating workflows to work on current GitHub stack

Updating workflows to work on current GitHub stack #12

Workflow file for this run

name: iOS
on: [pull_request]
jobs:
build:
timeout-minutes: 3
runs-on: macOS-latest
steps:
- name: Swift version
run: swift --version
- uses: actions/checkout@v2
- name: Build
run: swift build
- name: Run iOS tests
run: xcodebuild build test -destination 'name=iPhone 11' -scheme 'RectangleTools-Package'