Skip to content

Commit

Permalink
chore: WIP add to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mbreithecker committed Jan 8, 2025
1 parent fbf01eb commit 2157fa4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
# TODO tmp disable
# lint:
# uses: ./.github/workflows/lint.yml
#
# test:
# uses: ./.github/workflows/test.yml
15 changes: 15 additions & 0 deletions .github/workflows/migration.yml
Original file line number Diff line number Diff line change
@@ -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

This file was deleted.

This file was deleted.

0 comments on commit 2157fa4

Please sign in to comment.