Efa: fix compile warning #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fixtures Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
FixturesTests: | |
runs-on: macos-latest | |
name: Fixtures tests | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Decrypt secrets | |
run: ./.github/scripts/decrypt_secret.sh | |
env: | |
SECRETS_PASSPHRASE: ${{ secrets.SECRETS_PASSPHRASE }} | |
- name: Test | |
run: | | |
xcodebuild -scheme "StaticTripKitTests macOS" -resultBundlePath FixturesTestResults test | |
- uses: kishikawakatsumi/[email protected] | |
with: | |
path: FixturesTestResults.xcresult | |
title: Fixtures test results | |
if: success() || failure() |