MikeSchulze / gdUnit4

A Godot Unit Test Framework. Support for GDScript and C# unit testing
MIT License
565 stars 30 forks source link

GD-511: Remove obsolete `ProjectScanner` tool #513

Closed MikeSchulze closed 3 months ago

MikeSchulze commented 3 months ago

Why

Since introducing gdunit4-action the tool ProjectScanner is obsolete. The restore of project cache is done by:

    - name: 'Restore Godot project cache'
      if: ${{ !cancelled() }}
      env:
        GODOT_BIN: '/home/runner/godot-linux/godot'
      shell: bash
      run: |
        cd "${{ inputs.project_dir }}"
        echo -e "\e[94mStart of the recovery of the project cache ...\e[0m"
        $GODOT_BIN --path ./ -e --headless --quit-after 2000
        echo -e "\e[94mProject cache successfully restored.\e[0m"

or since Godot v4.2.2 by using --import flag to restore the cache

What

Deleted the ProjectScanner tool

Why

What