implemented prefab load command and added reward signal to echo agent #21
This file contains 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 Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Unity Environment | |
uses: game-ci/unity-actions/setup@v1 | |
with: | |
unity-version: '2023.2.16f1' # Specify your Unity version here | |
- name: Run Tests | |
uses: game-ci/unity-actions/test-runner@v1 | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: Test Results | |
path: ${{ github.workspace }}/Artifacts/TestResults.xml |