ci: indentation #175
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: Test Runner | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test-${{ matrix.testMode }}-${{ matrix.unityVersion }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| testMode: | |
| #- playmode | |
| - editmode | |
| unityVersion: # All are LTS except minimum supported version | |
| - 2019.3.15f1 | |
| - 2019.4.40f1 | |
| - 2020.3.48f1 | |
| - 2021.3.45f1 | |
| - 2022.3.43f1 | |
| - 6000.0.64f1 | |
| - 6000.3.2f1 | |
| steps: | |
| #Test Checkout | |
| - uses: actions/checkout@v4.1.4 | |
| with: | |
| lfs: true | |
| #Use a custom packages list instead of the original manifest | |
| - name: Use CI Manifest | |
| run: cp Packages/manifest_ci.json Packages/manifest.json | |
| #Test Cache | |
| - uses: actions/cache@v4.2.3 | |
| with: | |
| path: Library | |
| # This ensures a clean Library if manifest_ci.json is changed | |
| key: Library-${{ matrix.unityVersion }}-${{ hashFiles('Packages/manifest.json') }} | |
| restore-keys: | | |
| Library-${{ matrix.unityVersion }}- | |
| #Test Runner | |
| - uses: game-ci/unity-test-runner@v4.3.1 | |
| id: tests | |
| env: | |
| UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
| UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| with: | |
| projectPath: ${{ matrix.projectPath }} | |
| testMode: ${{ matrix.testMode }} | |
| artifactsPath: ${{ matrix.testMode }}-artifacts | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| checkName: Test results ${{ matrix.testMode }}-${{ matrix.unityVersion }} | |
| unityVersion: ${{ matrix.unityVersion }} | |
| customParameters: '-nographics' | |
| #Test Artifact | |
| - uses: actions/upload-artifact@v4.3.3 | |
| if: always() | |
| with: | |
| name: Test results for ${{ matrix.testMode }}-${{ matrix.unityVersion }} | |
| path: ${{ steps.tests.outputs.artifactsPath }} |