-
Notifications
You must be signed in to change notification settings - Fork 32
38 lines (35 loc) · 1.05 KB
/
fastlane.yml
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
32
33
34
35
36
37
38
name: Build and Test using Fastlane
on:
push:
branches:
- master
- candidate
pull_request:
jobs:
build:
runs-on: macos-latest
env:
RAS_PROJECT_IDENTIFIER_PROD: test-prod
RAS_PROJECT_IDENTIFIER_STG: test-stg
RAS_PROJECT_SUBSCRIPTION_KEY_PROD: test-sub-prod
RAS_PROJECT_SUBSCRIPTION_KEY_STG: test-sub-stg
RAT_ACCOUNT_IDENTIFIER: test-rat
RAT_ENDPOINT: https://developers.rakuten.com/
RMA_API_ENDPOINT_PROD: https://developers.rakuten.com/
RMA_API_ENDPOINT_STG: https://developers.rakuten.com/
RMA_APP_CENTER_SECRET: test-appcenter
RMA_DEMO_APP_BUILD_TYPE: -DEMO
RMA_GAD_APPLICATION_IDENTIFIER: ca-app-pub-0000000000000000~0000000000
steps:
- name: Repository checkout
uses: actions/checkout@v2
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
- name: Run tests
run: |
bundle exec fastlane ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2