support ImGui 1.89.9 #247
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
name: 🤖 Godot Checks | |
on: | |
push: | |
branches-ignore: | |
- godot3 | |
pull_request: | |
branches-ignore: | |
- godot3 | |
env: | |
gdver: "4.0.3-stable" | |
jobs: | |
export_game: | |
name: Run with Godot | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Download Godot | |
run: | | |
cd $HOME | |
wget https://github.com/godotengine/godot/releases/download/${{ env.gdver }}/Godot_v${{ env.gdver }}_mono_linux_x86_64.zip | |
unzip Godot_v${{ env.gdver }}_mono_linux_x86_64.zip | |
- name: Import resources and build | |
run: | | |
export gdbin=$HOME/Godot_v${{ env.gdver }}_mono_linux_x86_64/Godot_v${{ env.gdver }}_mono_linux.x86_64 | |
$gdbin --headless --build-solutions --quit | |
# TODO: run tests with the exported binary | |
- name: Test | |
run: | | |
export gdbin=$HOME/Godot_v${{ env.gdver }}_mono_linux_x86_64/Godot_v${{ env.gdver }}_mono_linux.x86_64 | |
$gdbin --headless --quit |