Wait 500ms before sending request token #679
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: Xcode | |
on: | |
pull_request: | |
paths: | |
- "SNUTT-2022/**" | |
- ".github/workflows/build.yml" | |
jobs: | |
build-and-test: | |
name: ${{ matrix.command }} on Xcode ${{ matrix.xcode }}, ${{ matrix.macos }} | |
runs-on: ${{ matrix.macos }} # os switching | |
strategy: | |
fail-fast: false # if 'true' then one failed job cancels all jobs remaining | |
matrix: | |
# see https://github.com/actions/virtual-environments/blob/main/images/macos/macos-13-Readme.md for available versions | |
xcode: | |
- "15.1" | |
macos: ["macos-14"] | |
command: ["build", "test"] | |
scheme: ["SNUTT"] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
- run: xcodebuild -showsdks | |
- name: Populate DebugConfig.xcconfig from Secrets | |
shell: bash | |
env: | |
DEBUG_CONFIG: ${{ secrets.DEBUG_CONFIG }} | |
GOOGLE_SERVICE_DEBUG_INFO: ${{ secrets.GOOGLE_SERVICE_DEBUG_INFO }} | |
GOOGLE_SERVICE_RELEASE_INFO: ${{ secrets.GOOGLE_SERVICE_RELEASE_INFO }} | |
run: | | |
echo "$GOOGLE_SERVICE_DEBUG_INFO" > SNUTT-2022/SNUTT/GoogleServiceDebugInfo.plist | |
echo "$GOOGLE_SERVICE_RELEASE_INFO" > SNUTT-2022/SNUTT/GoogleServiceReleaseInfo.plist | |
echo "$DEBUG_CONFIG" > SNUTT-2022/SNUTT/DebugConfig.xcconfig | |
- uses: mxcl/[email protected] | |
with: | |
platform: iOS | |
action: ${{ matrix.command }} | |
code-coverage: true | |
scheme: ${{ matrix.scheme }} | |
verbosity: xcpretty | |
configuration: Debug | |
working-directory: SNUTT-2022 |