Skip to content

feat(spec): New height logic / fast track #613

feat(spec): New height logic / fast track

feat(spec): New height logic / fast track #613

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
paths:
- specs/**/*.qnt
pull_request:
paths:
- specs/**/*.qnt
name: Quint
jobs:
quint-typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm install -g @informalsystems/quint
- run: find specs/ -name '*.qnt' | ./scripts/quint-forall.sh typecheck
quint-test:
name: Test
runs-on: ubuntu-latest
env:
MAX_SAMPLES: 100
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm install -g @informalsystems/quint
- run: find specs/ -name '*Test.qnt' | ./scripts/quint-forall.sh test --max-samples $MAX_SAMPLES