diff options
Diffstat (limited to '.github/workflows/godot_cpp_test.yml')
-rw-r--r-- | .github/workflows/godot_cpp_test.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/godot_cpp_test.yml b/.github/workflows/godot_cpp_test.yml index e1c37bbc1e..e3223c799b 100644 --- a/.github/workflows/godot_cpp_test.yml +++ b/.github/workflows/godot_cpp_test.yml @@ -56,3 +56,13 @@ jobs: cd godot-cpp/test scons target=template_debug dev_build=yes cd ../.. + + gdextension-c-compile: + runs-on: "ubuntu-20.04" + name: "Check GDExtension header with a C compiler" + steps: + - uses: actions/checkout@v4 + + - name: "Run C compiler on gdextension_interface.h" + run: | + gcc -c core/extension/gdextension_interface.h |