From ee60abdb9fde9863e3fe815f00ec6527751b9c69 Mon Sep 17 00:00:00 2001 From: Manuel Kocher <122824716+manuelkocher@users.noreply.github.com> Date: Sat, 3 Aug 2024 13:04:06 +0200 Subject: [PATCH] Update action.yml --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index cf4681c..d9199de 100644 --- a/action.yml +++ b/action.yml @@ -34,21 +34,26 @@ runs: python-version: '3.10' # optional - name: Checkout Repository uses: actions/checkout@v4 + shell: bash with: submodules: recursive - if: ${{ inputs.gdtoolkit_version == 'latest' }} name: Install gdtoolkit + shell: bash run: | pip install gdtoolkit - if: ${{ inputs.gdtoolkit_version != 'latest' }} name: Install gdtoolkit + shell: bash run: | pip install gdtoolkit==${{ inputs.gdtoolkit_version }} - if: ${{ inputs.directory == 'false' }} name: Run gdlint + shell: bash run: | gdlint *.gd - if: ${{ inputs.directory != 'false' }} name: Run gdlint + shell: bash run: | gdlint ${{ inputs.directory }}/*.gd