-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
701361d
commit 86c4d25
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,17 @@ jobs: | |
|
||
- uses: actions/checkout@v4 | ||
- name: Build Glecs | ||
run: cargo build --verbose --manifest-path \./addons/glecs/rust/glecs/Cargo.toml --features compile_bindings --target-dir ./addons/glecs/bin | ||
run: | | ||
cargo build --verbose \ | ||
--manifest-path \./addons/glecs/rust/glecs/Cargo.toml \ | ||
--features compile_bindings \ | ||
--target-dir ./addons/glecs/bin | ||
- name: List Dir Pre | ||
run: | ||
ls | ||
|
||
|
||
- uses: croconut/[email protected] | ||
with: | ||
# Your Godot version number e.g. 3.2.2 | ||
|
@@ -38,5 +47,9 @@ jobs: | |
# Maximum number of failing asserts or tests, if this or pass rate fails then the action will fail. Is not checked if you do not set it | ||
max-fails: 0 # optional, default is false | ||
# Filename to store and read results in XML | ||
result-output-file: unittest_log.xml # optional, default is test_results.xml | ||
result-output-file: unittest_log.xml # optional, default is test_results. | ||
|
||
- name: List Dir Post | ||
run: | ||
ls | ||
|