Skip to content

Commit

Permalink
save test logs (#69)
Browse files Browse the repository at this point in the history
* save test logs

* save test observations
  • Loading branch information
noskill authored Aug 15, 2023
1 parent 3014c97 commit e42fcd3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,23 @@ jobs:
ps a|grep [j]ava &&
conda activate py31 && cd $GITHUB_WORKSPACE/minecraft-demo/tests/vereya &&
python run_tests.py
- name: save java logs
if: always()
uses: actions/upload-artifact@v3
with:
name: JavaLogs
path: logs/app.log
- name: save python logs
if: always()
uses: actions/upload-artifact@v3
with:
name: PythonLog
path: minecraft-demo/tests/vereya/app.log
- name: save test observations
uses: actions/upload-artifact@v3
with:
name: TestObservations
path: minecraft-demo/tests/vereya/observations/observations.txt
- name: remove lock
if: always()
run: rm -f /tmp/minecraft-test-lock

0 comments on commit e42fcd3

Please sign in to comment.