Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

xrtk/unity-setup@v7.4.3 #206

xrtk/unity-setup@v7.4.3

xrtk/unity-setup@v7.4.3 #206

Workflow file for this run

name: validate
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
UNITY_EDITOR_PATH: ''
UNITY_PROJECT_PATH: ''
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
build-targets: 'StandaloneLinux64 Android iOS'
- os: windows-latest
build-targets: 'StandaloneWindows64 Android iOS'
- os: macos-14
build-targets: 'StandaloneOSX Android iOS'
arch: 'arm64'
- os: macos-latest
build-targets: 'StandaloneOSX Android iOS'
steps:
- name: checkout self
uses: actions/checkout@v4
- run: npm install
- name: checkout test project
uses: actions/checkout@v4
with:
repository: xrtk/com.xrtk.test
path: test-project
- uses: ./ # xrtk/unity-setup
id: unity-setup
with:
build-targets: '${{ matrix.build-targets }}'
architecture: '${{ matrix.arch }}'
- run: |
echo "${{ env.UNITY_EDITOR_PATH }}"
echo "${{ env.UNITY_PROJECT_PATH }}"