Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
bash ./scripts/test-todo-debt-audit.sh
bash ./scripts/audit-todo-debt.sh

- name: Transaction builder coverage audit
run: |
bash ./scripts/test-transaction-builder-tests-audit.sh
bash ./scripts/audit-transaction-builder-tests.sh

- name: Iroha mobile SDK release asset contract
env:
GH_TOKEN: ${{ github.token }}
Expand Down
6 changes: 6 additions & 0 deletions scripts/ci/run-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ if [[ -f "$WORKSPACE_DIR/scripts/audit-todo-debt.sh" ]]; then
bash "$WORKSPACE_DIR/scripts/audit-todo-debt.sh"
fi

if [[ -f "$WORKSPACE_DIR/scripts/audit-transaction-builder-tests.sh" ]]; then
echo "[run-pr] Running transaction builder coverage audit"
bash "$WORKSPACE_DIR/scripts/test-transaction-builder-tests-audit.sh"
bash "$WORKSPACE_DIR/scripts/audit-transaction-builder-tests.sh"
fi

if [[ -f "$WORKSPACE_DIR/scripts/check-iroha-mobile-sdk-release-assets.sh" ]]; then
echo "[run-pr] Checking Iroha mobile SDK release asset contract"
bash "$WORKSPACE_DIR/scripts/check-iroha-mobile-sdk-release-assets.sh" --self-test
Expand Down
Loading