chore(ci): match relay falcon config — consensus and mirror node versions #379
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 | |
| # ============================================================================= | |
| # TEMPORARY — v0.77 fix iteration only. REVERT BEFORE MERGE. | |
| # Reduced to a single suite so each push runs one ~5-min job instead of 14 | |
| # suites (most hanging to the job cap) on a serialized runner pool. The full | |
| # 14-suite job list + PublishResults lives in git history; restore it before | |
| # this PR is merged. To iterate a different suite, change `testfilter` below. | |
| # ============================================================================= | |
| 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: | |
| TokenCreateContract: | |
| name: Token Create Test Suite | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: TokenCreateContract |