From a98ec1cd92b601678ac86d5bc45c32444f1243ff Mon Sep 17 00:00:00 2001 From: pdrobnjak Date: Wed, 24 Sep 2025 16:31:25 +0200 Subject: [PATCH] Remove forward compatibility check --- .github/workflows/compatiblity_check.yml | 31 ------------------------ 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/compatiblity_check.yml 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