Skip to content

fix: add name and run #9

fix: add name and run

fix: add name and run #9

Workflow file for this run

# ワークフローの名前
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: