-
Notifications
You must be signed in to change notification settings - Fork 17
53 lines (49 loc) · 1.32 KB
/
quint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
on:
workflow_dispatch:
pull_request:
merge_group:
push:
branches: main
name: Quint
jobs:
changes:
name: Detect changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
specs: ${{ steps.filter.outputs.specs }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
specs:
- 'specs/**'
quint-typecheck:
name: Typecheck
needs: changes
if: ${{ needs.changes.outputs.specs == 'true' || github.ref == 'refs/heads/main' }}
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
needs: changes
if: ${{ needs.changes.outputs.specs == 'true' || github.ref == 'refs/heads/main' }}
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