티스토리 뷰
728x90
반응형
[하고 싶은 것]
Jest reporter action 처럼 PR하면 이렇게 테스트 커버리지가 코멘트로 달리는 것을 하고 싶습니다.
(참고로 Jest는 페이스북에서 유지 관리하는 JavaScript 테스트 프레임 워크입니다. Babel, TypeScript, Node.js, React, Angular 및 Vue.js를 사용하는 프로젝트에서 작동합니다.)
그러면 PR할때마다 테스트 커버리지가 보이니까
내가 추가한 피쳐에 테스트를 달고 싶은 동기부여가 더 되지 않을 까 해서요-!
[1] Slather 페이지 열어주기
- cocoapod 써서 xcworkspace 쓰는 플젝
name: PR
# workflow run이 언제 triggered 될 것인지에 대한 설정.
on:
# master랑 develop 브랜치에 풀리퀘하면 workflow를 돌리겠음.
pull_request:
branches: [ master, develop ]
# workflow 정의.
jobs:
build-and-test:
runs-on: self-hosted
env:
XCWORKSPACE: MyApp.xcworkspace
PROJECT: MyApp.xcodeproj
SCHEME: Model
CONFIGURATION: Debug
DESTINATION: platform=iOS Simulator,name=iPad Pro (9.7-inch),OS=latest
steps:
# step 1
- name: Checkout source code
uses: actions/checkout@v2
# step 2
- name: CocoaPod Install
run: pod install
# step 3
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode.app
# step 4
- name: Build and Test
run: xcodebuild clean build test
-workspace "$XCWORKSPACE"
-scheme "$SCHEME"
-configuration "$CONFIGURATION"
-destination "$DESTINATION"
-enableCodeCoverage YES | xcpretty --color
# step 5
- name: Show Test Coverage
run: slather coverage
--html --show
--workspace "$XCWORKSPACE"
--scheme "$SCHEME"
--configuration "$CONFIGURATION"
"$PROJECT"
- xcodeproj 쓰는 플젝
name: PR
# workflow run이 언제 triggered 될 것인지에 대한 설정.
on:
# master랑 develop 브랜치에 풀리퀘하면 workflow를 돌리겠음.
pull_request:
branches: [ master, develop ]
# workflow 정의.
jobs:
build-and-test:
runs-on: self-hosted
env:
PROJECT: Gorgonzola.xcodeproj
SCHEME: Gorgonzola (iOS)
CONFIGURATION: Debug
DESTINATION: platform=iOS Simulator,name=iPad Pro (9.7-inch),OS=latest
steps:
# step 1
- name: Checkout source code
uses: actions/checkout@v2
# step 2
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode.app
# step 3
- name: Build and Test
run: xcodebuild clean build test
-project "$PROJECT"
-scheme "$SCHEME"
-configuration "$CONFIGURATION"
-destination "$DESTINATION"
-enableCodeCoverage YES | xcpretty --color
# step 4
- name: Show Test Coverage
run: slather coverage
--html --show
--scheme "$SCHEME"
--configuration "$CONFIGURATION"
"$PROJECT"
##
만약 워크플로우 돌리는 서버에 slather가 설치 안되어있다면
install slather를 스텝에 추가해주면 됩니다!
name: PR
# workflow run이 언제 triggered 될 것인지에 대한 설정.
on:
# master랑 develop 브랜치에 풀리퀘하면 workflow를 돌리겠음.
pull_request:
branches: [ master, develop ]
# workflow 정의.
jobs:
build-and-test:
runs-on: macos-latest
steps:
...
# step 4
- name: Install Slather
run: sudo gem install slather
# step 5
- name: Show Test Coverage
run: slather coverage ....
[추가] 마켓플레이스에 있는 액션스
github.com/marketplace/actions/swift-codecov
github.com/marketplace/actions/swift-coverage-report
반응형
'🍏 > CI, CD' 카테고리의 다른 글
[Github Actions] xcpretty로 테스트 결과를 예쁘게 출력하기 (0) | 2020.06.25 |
---|---|
[Github Actions] Github API를 사용하는 스크립트 모음 (1) | 2020.06.24 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 장고 Custom Management Command
- Flutter getter setter
- Django Firebase Cloud Messaging
- flutter build mode
- 플러터 싱글톤
- 플러터 얼럿
- DRF APIException
- drf custom error
- Sketch 누끼
- Flutter Text Gradient
- Flutter 로딩
- flutter deep link
- PencilKit
- Flutter Clipboard
- METAL
- 장고 URL querystring
- flutter 앱 출시
- ipad multitasking
- flutter dynamic link
- Django Heroku Scheduler
- cocoapod
- ribs
- Dart Factory
- Django FCM
- 구글 Geocoding API
- Flutter Spacer
- Watch App for iOS App vs Watch App
- SerializerMethodField
- Python Type Hint
- github actions
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함