Skip to content

Commit

Permalink
GD-58: Do not install the gdUnit4 plugin for .NET action usage (#60)
Browse files Browse the repository at this point in the history
# Why
The plugin is only required to execute GDScript tests and not need for a pure .NET project.

# What
Do only install the GdUnit4 plugin for GDScript test execution
  • Loading branch information
MikeSchulze authored Jan 22, 2025
1 parent 50ab18f commit 0e099db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ runs:
/home/runner/godot-linux/godot --version
- name: 'Install gdUnit4 plugin - ${{ inputs.version }}'
# We only install the plugin if required, for c# test is not need to install the plugin
if: ${{ !cancelled() && env.RUN_GDSCRIPT_TESTS == 'true' }}
shell: bash
run: |
echo -e "\e[33m Change to project directory: ${{ inputs.project_dir }} \e[0m"
Expand Down

0 comments on commit 0e099db

Please sign in to comment.