Skip to content

Changed advanced-jobs.md, groups-and-tagsets.md. #128

Changed advanced-jobs.md, groups-and-tagsets.md.

Changed advanced-jobs.md, groups-and-tagsets.md. #128

Workflow file for this run

name: Unity
on:
push:
branches: [main, 'dev/v*']
pull_request:
branches: [main]
permissions:
checks: write
contents: read
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Free disk space
uses: jlumbroso/free-disk-space@v1.3.1
with:
tool-cache: false
- uses: actions/cache@v4
with:
path: UnityProject/Trecs/Library
key: Library-${{ hashFiles('UnityProject/Trecs/Packages/manifest.json', 'UnityProject/Trecs/Packages/packages-lock.json') }}
restore-keys: |
Library-
- uses: game-ci/unity-test-runner@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: UnityProject/Trecs
testMode: all
unityVersion: 6000.3.10f1
customImage: unityci/editor:ubuntu-6000.3.10f1-base-3
githubToken: ${{ secrets.GITHUB_TOKEN }}