feat: implemented topic transaction TCK endpots. #2886
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Checks | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - closed | |
| defaults: | |
| run: | |
| shell: bash | |
| concurrency: | |
| group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Code | |
| # Skip the full build when a PR is closed without being merged. | |
| if: github.event.action != 'closed' || github.event.pull_request.merged == true | |
| uses: ./.github/workflows/zxc-build-library.yaml | |
| check-links: | |
| # Link checking is only useful while the PR is open. | |
| if: github.event.action != 'closed' | |
| runs-on: hiero-client-sdk-linux-large | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout Code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Check Markdown links | |
| uses: step-security/github-action-markdown-link-check@d952f9c54968d30422678f866a3482759f7c8214 # v1.0.18 | |
| with: | |
| check-modified-files-only: 'yes' | |
| config-file: '.mlc_config.json' | |
| use-quiet-mode: 'yes' | |
| base-branch: 'main' |