mirror of
https://github.com/game-ci/unity-actions.git
synced 2026-01-29 04:39:07 +08:00
25 lines
580 B
YAML
25 lines
580 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
testWorkflowActions:
|
|
runs-on: ubuntu-latest
|
|
name: Test the workflow actions
|
|
|
|
# Set Unity version
|
|
strategy:
|
|
matrix:
|
|
unity-tag: [2019.2.11f1] # TODO - Reference this tag in all steps
|
|
|
|
steps:
|
|
|
|
# Checkout repository (required to test local actions)
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v1
|
|
|
|
# Configure generic activation (local to the actions container)
|
|
- name: Request activation
|
|
uses: ./request-activation
|
|
with:
|
|
unityLicense: ${{ secrets.UNITY_LICENSE }}
|
|
|