2020-03-16 00:04:20 +00:00
|
|
|
name: Test
|
|
|
|
|
2020-07-12 22:12:18 +00:00
|
|
|
on: [push, pull_request]
|
2020-03-16 00:04:20 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-04-05 23:05:45 +00:00
|
|
|
- name: Set Environment
|
|
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_11.4.app
|
2020-03-16 00:04:20 +00:00
|
|
|
- name: Test
|
|
|
|
run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive
|