Skip to content

Add SceneHasMultipleSceneScopesException when a scene has more than o… #54

Add SceneHasMultipleSceneScopesException when a scene has more than o…

Add SceneHasMultipleSceneScopesException when a scene has more than o… #54

Workflow file for this run

name: 🧪 Tests
on: push
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
jobs:
TestRunner:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 5
container:
image: "unityci/editor:ubuntu-2021.3.45f1-base-3.1.0"
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Activate Unity
run: echo "$UNITY_LICENSE" > Unity_lic.ulf && (/opt/unity/Editor/Unity -nographics -batchmode -manualLicenseFile Unity_lic.ulf || true)
- name: Edit Mode Tests
run: /opt/unity/Editor/Unity -projectPath . -batchmode -nographics -runTests -testPlatform EditMode -retry 3
- name: Play Mode Tests
run: /opt/unity/Editor/Unity -projectPath . -batchmode -nographics -runTests -testPlatform PlayMode -retry 3