Refactor the Quint specification after #144 #31
Workflow file for this run
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: ">= 18" | |
check-latest: true | |
- name: Install quint | |
run: npm i @informalsystems/quint -g | |
- name: Run test | |
run: cd spec && make test |