Triparty precompile functions for block delay and bridge limits #3384
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 | |
| # The workflow runs unit tests and generates a coverage report for Go and | |
| # Solidity code. It triggers on pull requests and pushes to the main branch or | |
| # any branch that starts with `release/`. | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| jobs: | |
| test-unit-cover: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| steps: | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22' | |
| check-latest: true | |
| - uses: actions/checkout@v4 | |
| - uses: technote-space/get-diff-action@v6.1.2 | |
| with: | |
| PATTERNS: | | |
| **/**.sol | |
| **/**.go | |
| go.mod | |
| go.sum | |
| - name: Test and Create Coverage Report | |
| run: | | |
| make test-unit-cover | |
| if: env.GIT_DIFF |