This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
charts: mahout: 0.1.15 #78
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: Perform model checking by NuSMV | |
on: | |
push: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
model-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@v4 | |
- run: wget https://nusmv.fbk.eu/distrib/NuSMV-2.6.0-linux64.tar.gz | |
- run: tar xf NuSMV-2.6.0-linux64.tar.gz | |
- run: NuSMV-2.6.0-Linux/bin/NuSMV mahout.smv | tee nusmv_log | |
- run: cat nusmv_log | egrep '^-- (specification|invariant) .+ is false$' && exit 1 || true |