๐ท Build & Test CI ์ถ๊ฐ #1
Workflow file for this run
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
# workflow ์ ์ด๋ฆ | |
name: Xcode Test | |
on: | |
# Epic ๋ธ๋์น์ push ๋ pull request ์ด๋ฒคํธ๊ฐ ์ผ์ด๋ฌ์๋ ํด๋น workflow ๋ฅผ trigger | |
push: | |
branches: [ '**/epic/iOS/**' ] | |
pull_request: | |
branches: [ '**/epic/iOS/**' ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
# uses ํค์๋๋ฅผ ํตํด Github Actions์์ ๊ธฐ๋ณธ์ผ๋ก ์ ๊ณตํ๋ ์ก์ ์ ์ฌ์ฉ ๊ฐ๋ฅ. ์๋ ์ก์ ์ repository ์ ์ฒดํฌ์์ํ๋ ๊ฒ | |
- uses: actions/checkout@v2 | |
# shell ์ด์ฉํด์ ํ๋์ command ์ํ | |
- name: ๐ Start xcode build | |
run: | | |
xcodebuild clean test -project iOS/MaybeGamsung/MaybeGamsung.xcodeproj -scheme MaybeGamsung -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=latest' |