chore: Switch from codespell
to typos
to check spelling
#308
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
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 |