1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 00:59:47 +00:00

Use Godot 3.x's gdtoolkit.

gdtoolkit got updated to Godot 4.x, so we need to explicitly state that we are installing the Godot 3.x version.
This commit is contained in:
Emmanouil Papadeas 2023-03-07 16:24:59 +02:00 committed by GitHub
parent d9efe97bfa
commit cd4e9ef9bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip3 install gdtoolkit
- run: pip3 install "gdtoolkit==3.*"
- run: gdformat --diff .
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip3 install gdtoolkit
- run: pip3 install "gdtoolkit==3.*"
- run: gdlint .
codespell:
runs-on: ubuntu-latest