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:
|
2020-11-11 23:32:28 +00:00
|
|
|
runs-on: macos-11.0
|
2020-03-16 00:04:20 +00:00
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
2020-10-13 03:48:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-04-05 23:05:45 +00:00
|
|
|
- name: Set Environment
|
2020-11-08 07:31:28 +00:00
|
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_12.2.app
|
2020-03-16 00:04:20 +00:00
|
|
|
- name: Test
|
|
|
|
run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive
|