Skip to content

refactor(spec): new structure for the specs/ directory #574

refactor(spec): new structure for the specs/ directory

refactor(spec): new structure for the specs/ directory #574

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
paths:
- specs/quint/**
pull_request:
paths:
- specs/quint/**
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: bash scripts/quint-forall.sh typecheck specs/quint/**/*.qnt
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: bash scripts/quint-forall.sh "test --max-samples $MAX_SAMPLES" specs/quint/tests/**/*Test.qnt