Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkocher authored Aug 3, 2024
1 parent cdf9d67 commit ee60abd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ee60abd

Please sign in to comment.