mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-18 05:22:11 +00:00
22 lines
692 B
YAML
22 lines
692 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: macOS-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup Signing
|
|
env:
|
|
DOES_THIS_WORK: ${{ secrets.JOE_TEST }}
|
|
SIGNING_DATA: ${{ secrets.SIGNING_DATA }}
|
|
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
|
|
HOST_PROFILE_DATA: ${{ secrets.HOST_PROFILE_DATA }}
|
|
AGENT_PROFILE_DATA: ${{ secrets.AGENT_PROFILE_DATA }}
|
|
run: ./.github/scripts/signing.sh
|
|
- name: Set Environment
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_11.4.app
|
|
- name: Test
|
|
run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive
|