Skip to content

Commit

Permalink
feat: run gnoland with changed genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
r3v4s committed Nov 18, 2024
1 parent 85bd424 commit b91d8bc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/genesis-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,14 @@ jobs:
echo "Verifying $file"
gnogenesis verify -genesis-path $file
done
- name: Build gnoland
run: make -C gno.land install.gnoland

- name: Running latest gnoland with each genesis file
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "Running gnoland with $file"
gnoland start -lazy=true --genesis $file
# TODO: how to determine if the genesis is valid and chain did start?
done

0 comments on commit b91d8bc

Please sign in to comment.