Skip to content

experiment with "external" observables once again #115

experiment with "external" observables once again

experiment with "external" observables once again #115

Workflow file for this run

name: Unity Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: playground-unity/Library
key: playground-unity-Library-${{ hashFiles('playground-unity/Assets/**', 'playground-unity/Packages/**', 'playground-unity/ProjectSettings/**') }}
restore-keys: |
playground-unity-Library-
- uses: game-ci/unity-test-runner@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: playground-unity
testMode: PlayMode
githubToken: ${{ secrets.GITHUB_TOKEN }}