chore(ci): match relay falcon config — consensus and mirror node versions #405
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: Tests CI | |
| on: | |
| pull_request: | |
| branches: [main, release/**] | |
| push: | |
| branches: [main, release/**] | |
| tags: [v*] | |
| concurrency: | |
| group: tests-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| ERC20Contract: | |
| name: ERC20 Contract Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: ERC20 | |
| ERC721Contract: | |
| name: ERC721 Contract Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: ERC721 | |
| TokenCreateContract: | |
| name: Token Create Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: TokenCreateContract | |
| TokenQueryContract: | |
| name: Token Query Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: TokenQueryContract | |
| TokenManagmentContract: | |
| name: Token Managment Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: TokenManagmentContract | |
| TokenTransferContract: | |
| name: Token Transfer Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: TokenTransferContract | |
| HIP755: | |
| name: HIP755 Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP755 | |
| HIP1215: | |
| name: HIP1215 Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP1215 | |
| HRC: | |
| name: HRC Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HRC | |
| PrngSystemContract: | |
| name: PrngSystemContract Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: PrngSystemContract | |
| HederaAccountService: | |
| name: HederaAccountService Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HAS | |
| HIP904Batch1: | |
| name: HIP904 Contract Test Suite Batch 1 | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP904Batch1 | |
| HIP904Batch2: | |
| name: HIP904 Contract Test Suite Batch 2 | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP904Batch2 | |
| HIP904Batch3: | |
| name: HIP904 Contract Test Suite Batch 3 | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP904Batch3 | |
| PublishResults: | |
| name: Publish Results | |
| if: ${{ !cancelled() }} | |
| needs: | |
| - ERC20Contract | |
| - ERC721Contract | |
| - TokenCreateContract | |
| - TokenQueryContract | |
| - TokenManagmentContract | |
| - TokenTransferContract | |
| - HIP755 | |
| - HIP1215 | |
| - HRC | |
| - PrngSystemContract | |
| - HederaAccountService | |
| - HIP904Batch1 | |
| - HIP904Batch2 | |
| - HIP904Batch3 | |
| runs-on: hl-contr-lin-md | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0 | |
| with: | |
| egress-policy: audit | |
| - name: Download Test Reports | |
| uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | |
| with: | |
| pattern: Test Results (*) | |
| merge-multiple: true | |
| - name: Publish Test Report | |
| uses: step-security/publish-unit-test-result-action@681100d67b09305624c089873f12c545ee7cbc24 # v2.23.0 | |
| with: | |
| check_name: Test Results | |
| json_thousands_separator: ',' | |
| junit_files: 'test-*.xml' |