This action has been replaced by https://github.com/XRTK/unity-setup
An atomic GitHub action to validate the Unity Editor Installation on the runner and get the project information.
Part of the Mixed Reality Toolkit (XRTK) open source project.
This action does not have any dependency on the use of XRTK in your Unity project.
jobs:
validate:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.runner }}
outputs:
editor-path: ${{ steps.unity-validate.outputs.editor-path }}
project-path: ${{ steps.unity-validate.outputs.project-path }}
steps:
- uses: actions/checkout@v3
- id: unity-validate
uses: xrtk/unity-validate@main
with:
modules: 'android ios'
run: echo ${{ steps.unity-validate.outputs.editor-path }}
run: echo ${{ steps.unity-validate.outputs.project-path }}