Skip to content

Merge pull request #9 from Alexandrress/develop #32

Merge pull request #9 from Alexandrress/develop

Merge pull request #9 from Alexandrress/develop #32

Workflow file for this run

name: Test ⚙
on:
push:
branches:
- '**' #Matches every branch
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_VERSION: "2020.1.10f1"
jobs:
build:
name: Test Unity project
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout repository
uses: actions/checkout@v2
with:
lfs: true
# Cache
- uses: actions/cache@v2
with:
path: Library #Path where Unity stocks build cache
key: Library
# Test
- name: Run tests
uses: game-ci/unity-test-runner@v2
with:
unityVersion: ${{ env.UNITY_VERSION }}
customParameters: '-nographics'