Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test-run-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,11 @@ jobs:
uses: ./.github/workflows/test-clean-branch.yaml
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}

test-runner:
uses: ./.github/workflows/reusable-test-runner.yaml
secrets:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
14 changes: 14 additions & 0 deletions .github/workflows/test-test-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ on:
- '2021.3.45f1'
- '2022.3.57f1'
- '6000.0.37f1'
workflow_call:
inputs:
unity-version:
required: false
type: string
default: '2022.3.57f1'
secrets:
UNITY_LICENSE:
required: true
UNITY_EMAIL:
required: true
UNITY_PASSWORD:
required: true

jobs:
test-runner:
uses: ./.github/workflows/reusable-test-runner.yaml
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[![Test Create Release](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-create-release.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-create-release.yaml)
[![Test Update package.json](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-update-packagejson.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-update-packagejson.yaml)
[![Test Merge and Push](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-merge-and-push.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-merge-and-push.yaml)
[![Test Release Notes Generator](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-release-notes.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-release-notes.yaml)
[![Test Release Notes Generator](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-release-notes.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-release-notes.yaml)
[![Test Test Runner](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-test-runner.yaml/badge.svg)](https://github.com/IShix-g/Unity-GitHubActions/actions/workflows/test-test-runner.yaml)

[README - 日本語版](Docs/README_jp.md)

Expand Down
Loading