propose a new tx to cancel the old evm tx that cannot be sent #1591
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: Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| POLYGONRPC: ${{ vars.POLYGONRPC }} | |
| BITCOINRPC: ${{ vars.BITCOINRPC }} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25 | |
| - name: Build | |
| run: go build -o safe . | |
| - name: TestMTG | |
| run: go test -v ./mtg/... | |
| - name: TestCommon | |
| run: go test -v ./common/... | |
| - name: TestApps | |
| run: go test -v ./apps/... | |
| - name: TestCMPEthereumSign | |
| run: go test -v ./signer -run TestCMPEthereumSign -count 10 | |
| - name: TestObserver | |
| run: go test -v ./observer/... | |
| - name: TestKeeper | |
| run: go test -timeout 20m -v ./keeper/... | |
| - name: TestSigner | |
| run: go test -v ./signer/... |