Update template dependencies. #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow to automatically lint gdscript code | |
name: gdlint on push | |
on: | |
[push, pull_request] | |
jobs: | |
gdlint: | |
name: gdlint scripts | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Ensure python is installed | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
# Install gdtoolkit | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install 'gdtoolkit==4.*' | |
# Lint the components | |
- name: Lint Godot XR Template Components | |
run: | | |
gdlint components | |