chore: update proto #58
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
name: Code Coverage | |
# 当提交不需要打版本的commit时,只需要不bump version,则后续fastlane action不会触发 | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Start Coverage Test | |
runs-on: macos-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependency | |
run: | | |
bundle update | |
pod install | |
- name: Run tests | |
uses: sersoft-gmbh/xcodebuild-action@v1 | |
with: | |
workspace: ArcBlockSDK.xcworkspace | |
sdk: iphonesimulator | |
destination: "platform=iOS Simulator,name=iPhone 8" | |
configuration: Debug | |
scheme: ArcBlockSDK | |
action: test | |
enable-code-coverage: true | |
- name: Generate Coverage Report | |
run: | | |
fastlane code_coverage | |
- name: Comment PR | |
uses: NejcZdovc/comment-pr@v1 | |
with: | |
file: cov_reports/report.md |