Skip to content

Commit

Permalink
Make logs checking steps always run even on failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Jul 25, 2023
1 parent eb484fa commit 8acaca5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,12 @@ jobs:
run: |
./tests/leap/nodeos_eos_evm_test.py --eos-evm-contract-root ./contract/build --eos-evm-build-root ./build --use-tx-wrapper ./peripherals/tx_wrapper
- name: Check Logs
- name: Check Tx_Wrapper Logs
if: always()
run: |
cat $(find . -name tx_wrapper.stderr)
- name: Check eos-evm-node Logs
if: always()
run: |
cat $(find . -name eos-evm-node.stderr)

0 comments on commit 8acaca5

Please sign in to comment.