アプリの設定をtxtからできる機能 #1
Workflow file for this run
This file contains hidden or 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: Unity Test CI | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
branches: | |
- develop | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
name: Unity Edit Mode Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Cache Library | |
uses: actions/[email protected] | |
with: | |
path: Library | |
key: Library-${{ runner.os }}-${{ hashFiles('**/Packages/manifest.json') }} | |
restore-keys: | | |
Library-${{ runner.os }}- | |
- name: Run Unity Tests | |
uses: game-ci/unity-test-runner@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
with: | |
projectPath: . | |
unityVersion: '6000.0.31f1' # プロジェクトの Unity バージョンに合わせてください | |
testMode: editmode | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
artifactsPath: './artifacts' | |
- name: Upload Test Results | |
uses: actions/[email protected] | |
with: | |
name: TestResults | |
path: "**/TestResults/*.xml" |