Skip to content

V5.8.0 hotfix 4

V5.8.0 hotfix 4 #3263

name: Compatibility Check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
forward-compatibility:
name: forward-compatibility
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Check Latest Dependencies
run: |
git clone https://github.com/sei-protocol/sei-cosmos.git
git clone https://github.com/sei-protocol/sei-tendermint.git
git clone https://github.com/sei-protocol/sei-iavl.git
git clone https://github.com/sei-protocol/go-ethereum.git
go mod edit -replace github.com/cosmos/iavl=./sei-iavl
go mod edit -replace github.com/tendermint/tendermint=./sei-tendermint
go mod edit -replace github.com/cosmos/cosmos-sdk=./sei-cosmos
go mod edit -replace github.com/ethereum/go-ethereum=./go-ethereum
go mod tidy
make install