Skip to content

Commit

Permalink
Update unittest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GsLogiMaker committed May 3, 2024
1 parent 701361d commit 86c4d25
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 86c4d25

Please sign in to comment.