Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-pate committed Jan 24, 2025
1 parent 588c77e commit 5ff353d
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on: [push, pull_request]

name: Continuous integration

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.3.2'
# Lint the godot-xr-tools addon
- name: Lint and Format Checks
run: |
./check.sh
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Gut Tests
uses: manleydev/[email protected]


1 change: 1 addition & 0 deletions RootModel.gd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var array: Array
var time: String
var icon: Texture = null


func array_callable():
return array

Expand Down

0 comments on commit 5ff353d

Please sign in to comment.