Add test step to release

This commit is contained in:
Max Goedjen 2020-03-15 16:35:05 -07:00
parent f800726dde
commit fedf737fb4
No known key found for this signature in database
GPG Key ID: E58C21DD77B9B8E8
2 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,13 @@ on:
tags:
- '*'
jobs:
test:
runs-on: macOS-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v1
- name: Test
run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive
build:
runs-on: macOS-latest
timeout-minutes: 10

View File

@ -2,7 +2,7 @@ name: Test
on: push
jobs:
build:
test:
runs-on: macOS-latest
timeout-minutes: 10
steps: