File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name: CI - Run Tests & Build Sample App
2+
3+ on:
4+ pull_request:
5+ branches: [ main, develop ]
6+ push:
7+ branches: [ main, develop ]
8+ workflow_dispatch:
9+
10+ concurrency:
11+ group: ${{ github.ref }}
12+ cancel-in-progress: true
13+
14+ jobs:
15+ testRunner-macos:
16+ uses: ./.github/workflows/ci-internal.yml
17+ with:
18+ os: macos-latest
19+ unity_version: 2021.3.0
20+ dotnet_version: NET_4_x
21+ compiler: il2cpp
22+ target_platform: standalone
23+
24+ testRunner-linux:
25+ strategy:
26+ fail-fast: false
27+ matrix:
28+ unity_version: [2021.3.0, 2020.3.0]
29+ dotnet_version: [NET_4_x, STANDARD_2_x]
30+ compiler: [mono, il2cpp]
31+ target_platform: [standalone, mobile]
32+ uses: ./.github/workflows/ci-internal.yml
33+ with:
34+ os: ubuntu-latest
35+ unity_version: ${{ matrix.unity_version }}
36+ dotnet_version: ${{ matrix.dotnet_version }}
37+ compiler: ${{ matrix.compiler }}
38+ target_platform: ${{ matrix.target_platform }}
You can’t perform that action at this time.
0 commit comments