feat: ChonkyBFT logic #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Specification testing | |
on: | |
pull_request: | |
paths: | |
- "spec/**" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
check-latest: true | |
- name: Install quint | |
run: npm i @informalsystems/[email protected] -g | |
- name: Run test | |
run: cd spec && make test |