mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
db3564f0cc
- Install Gut using gd-plug. - Add some basic tests. - Update workflow to run tests. - Add test and gd-plug install/uninstall recipes to Justfile. - Re-enable debug builds as these are used by editor when testing.
21 lines
626 B
YAML
21 lines
626 B
YAML
name: Import assets
|
|
inputs:
|
|
godot-version:
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Godot
|
|
uses: lihop/setup-godot@v2
|
|
with:
|
|
version: ${{ inputs.godot-version }}
|
|
- name: Install just
|
|
uses: taiki-e/install-action@just
|
|
- name: Install dev dependencies
|
|
shell: bash
|
|
run: just install
|
|
- name: Import assets
|
|
shell: bash
|
|
run: |
|
|
# HACK: See https://github.com/godotengine/godot-proposals/issues/1362.
|
|
(for i in {1..4}; do godot --editor --headless & sleep 5 && .github/actions/import-assets/monitor_import.sh; done) || true
|