diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index c126f513..76eaa3f7 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -2,8 +2,12 @@ name: run all jobs on: push jobs: - lint: - uses: ./.github/workflows/lint.yml + migration: + uses: ./.github/workflows/migration.yml - test: - uses: ./.github/workflows/test.yml \ No newline at end of file + # TODO tmp disable +# lint: +# uses: ./.github/workflows/lint.yml +# +# test: +# uses: ./.github/workflows/test.yml \ No newline at end of file diff --git a/.github/workflows/migration.yml b/.github/workflows/migration.yml new file mode 100644 index 00000000..ac863aa8 --- /dev/null +++ b/.github/workflows/migration.yml @@ -0,0 +1,15 @@ +name: migration +on: + workflow_call: + +jobs: + test: + runs-on: ubuntu-latest + steps: + # Checkout the repository + - name: Check out repository code + uses: actions/checkout@v4 + # Setup Golang + - name: Verify migration proofs + working-directory: ./app/upgrades/v2_0/validator_proofs + run: python3 verify.py \ No newline at end of file diff --git a/app/upgrades/v2_0/validator-proofs/kaon/example-validator.json b/app/upgrades/v2_0/validator-proofs/kaon/example-validator.json deleted file mode 100644 index 7a533ce9..00000000 --- a/app/upgrades/v2_0/validator-proofs/kaon/example-validator.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "My example Kaon validator name - this is just for human-readability", - "consensus_address": "kyvevaloper...", - "protocol_address": "kyve...", - "proof_1": "89644D8598D007F7B744E91BA4490C11513860046C257F29CFAF41EAE37FAE9C", - "proof_2": "36A1110532EC28C4BEDA610720CA31DD1B14D4A49772F8890EB5C62B417D253B" -} \ No newline at end of file diff --git a/app/upgrades/v2_0/validator-proofs/mainnet/example-validator.json b/app/upgrades/v2_0/validator-proofs/mainnet/example-validator.json deleted file mode 100644 index 6d2d84ce..00000000 --- a/app/upgrades/v2_0/validator-proofs/mainnet/example-validator.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "My example validator name - this is just for human-readability", - "consensus_address": "kyvevaloper...", - "protocol_address": "kyve...", - "proof_1": "EEA08DDDA94434BBE1FA25AB941B58D85FC5EE48E866B602549CA194CAB41B11", - "proof_2": "21771F8B4B2F72D0F292F3517051FD6D8CAA5BB9EC83B906F2BF38684F1E624E" -} \ No newline at end of file