You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to setup a simple action with gdtoolkit's static checks, the base action from this repo can be used:
139
+
140
+
```
141
+
name: Static checks
142
+
143
+
on:
144
+
push:
145
+
branches: [ "main" ]
146
+
pull_request:
147
+
branches: [ "main" ]
148
+
149
+
jobs:
150
+
static-checks:
151
+
name: 'Static checks'
152
+
runs-on: ubuntu-latest
153
+
steps:
154
+
- uses: actions/checkout@v3
155
+
- uses: Scony/godot-gdscript-toolkit@master
156
+
- run: gdformat --check source/
157
+
- run: gdlint source/
158
+
```
159
+
160
+
See the discussion in https://github.com/Scony/godot-gdscript-toolkit/issues/239 for more details.
161
+
136
162
## Development [(more)](https://github.com/Scony/godot-gdscript-toolkit/wiki/5.-Development)
137
163
138
164
Everyone is free to fix bugs or introduce new features. For that, however, please refer to existing issue or create one before starting implementation.
0 commit comments