Skip to content

Commit

Permalink
incremental change
Browse files Browse the repository at this point in the history
  • Loading branch information
chkuang-g committed Aug 21, 2023
1 parent acf4ac2 commit 41eee94
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:

- run: cat test_output/test*/*_test.log | grep "^Test .* SKIPPED$"

- run: cat test_output/test*/*_test.log | grep "^Test .* IGNORED$"
- run: |
cat test_output/test*/*_test.log | grep "^Test .* IGNORED$"
cat test_output/test*/*_test.log | grep "^Test .* FAILED$"
continue-on-error: true
# - name: Obtain Failed tests
Expand Down Expand Up @@ -89,3 +91,10 @@ jobs:
# version: ${{ inputs.unity_version }}
# release_license: "true"

- name: Upload build logs
uses: actions/upload-artifact@v3
if: ${{ !cancelled() }}
with:
name: logs
path: test_output/test*/*.log
retention-days: ${{ env.artifactRetentionDays }}

0 comments on commit 41eee94

Please sign in to comment.