Skip to content

propose a new tx to cancel the old evm tx that cannot be sent #1593

propose a new tx to cancel the old evm tx that cannot be sent

propose a new tx to cancel the old evm tx that cannot be sent #1593

Workflow file for this run

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/...