-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (41 loc) · 1.12 KB
/
test.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
39
40
41
42
43
44
45
46
47
48
49
# ワークフローの名前
name: Test
# ワークフローを実行するイベント定義
on:
# プッシュが行われた時に実行
push:
branches:
- main
- develop
- feature/*
paths-ignore:
- README.md
# ジョブへの権限の割り当て
# ref: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
# リポジトリの内容を操作
contents: read
# GitHub Actionsを使用
actions: read
jobs:
dependencies:
# ジョブを実行するマシンの種類を定義
# ref: https://docs.github.com/ja/actions/using-jobs/choosing-the-runner-for-a-job
runs-on: ubuntu-latest
steps:
# チェックアウト
- name: Checkout sources
uses: actions/checkout@v4
# セットアップ
- name: Setup
uses: ./.github/actions/setup
env:
API_KEY: ${{ secrets.API_KEY }}
with:
api_key: ${{ secrets.API_KEY }}
# モックのコンパイル
- name: Compile MockDebug
run: |
./gradlew compileMockDebugSource
# test-prod:
# compile-mock: