Skip to content

Merge branch 'master' of https://github.com/BluePixelDev/TMPAnimated #10

Merge branch 'master' of https://github.com/BluePixelDev/TMPAnimated

Merge branch 'master' of https://github.com/BluePixelDev/TMPAnimated #10

Workflow file for this run

name: "Run Tests"
on:
push:
paths-ignore:
- "README.md"
- "CHANGELOG.md"
- ".github/**"
- "Samples/**"
jobs:
test-package:
name: Test the package
runs-on: ubuntu-latest
steps:
#Checkout
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
# Move the package to a subdirectory
- name: Move package to subdirectory
run: |
mkdir -p unity-package
shopt -s extglob
mv !(unity-package) unity-package/
shopt -u extglob
# Test
- name: Run tests
uses: game-ci/unity-test-runner@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
packageMode: true
projectPath: unity-package
githubToken: ${{ secrets.GITHUB_TOKEN }}
unityVersion: ${{ vars.UNITY_VERSION }}