diff --git a/.github/workflows/compatiblity_check.yml b/.github/workflows/compatiblity_check.yml deleted file mode 100644 index 9dd337dda9..0000000000 --- a/.github/workflows/compatiblity_check.yml +++ /dev/null @@ -1,31 +0,0 @@ -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.24 - - - 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