Update ResolverDebugProperties to avoid keeping strong refs to any se… #553
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: Tests | |
on: push | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
jobs: | |
TestRunner: | |
name: Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
container: | |
image: "unityci/editor:ubuntu-2021.3.10f1-base-2.0.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 4 | |
- name: Play Mode Tests | |
run: /opt/unity/Editor/Unity -projectPath . -batchmode -nographics -runTests -testPlatform PlayMode -retry 4 | |
# - name: Publish Results | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# path: test-results.xml |