๐ ๏ธ fastlane ci ๊ตฌ์ถ #1
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: test-CI | |
# workflow๊ฐ ์ธ์ ์คํ๋ ์ง์ ๋ํ ์ค๋ช (When) | |
on: | |
# main ๋ธ๋์น์ pr์ ์ฌ๋ฆฌ๋ ๊ฒฝ์ฐ(main ๋ธ๋์น์์ ๋ถ๊ธฐํ ๋ธ๋์น๋ ์คํ๋๋ค.) | |
pull_request: | |
branches: | |
- 'dev' | |
# workflow๊ฐ ์ด๋ป๊ฒ ์คํ๋ ์ง์ ๋ํ ์ค๋ช (How) | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# ruby ์ค์น | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
# fastlane ์ค์น | |
- name: Install Fastlane | |
run: brew install fastlane | |
- name: fastlane tests run | |
run: fastlane tests |