-
Notifications
You must be signed in to change notification settings - Fork 29
38 lines (35 loc) · 1.01 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test
on: [pull_request, push]
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
jobs:
test:
name: Test ${{ matrix.unityVersion }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
unityVersion:
- 2019.3.2f1
targetPlatform:
# - StandaloneOSX # Build a macOS standalone (Intel 64-bit).
# - StandaloneWindows64 # Build a Windows 64-bit standalone.
- StandaloneLinux64 # Build a Linux 64-bit standalone.
steps:
- uses: actions/checkout@v2
with:
lfs: true
- uses: actions/cache@v1.1.0
with:
path: ./Library
key: Library-${{ matrix.targetPlatform }}
restore-keys: |
Library-
- uses: webbertakken/unity-test-runner@v1.3
id: testRunner
with:
unityVersion: ${{ matrix.unityVersion }}
- uses: actions/upload-artifact@v1
with:
name: Test results
path: ${{ steps.testRunner.outputs.artifactsPath }}