scan for cvc5 before cvc4 + generate the error msg for missing smt #1448
Workflow file for this run
This file contains hidden or 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: hlint | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
jobs: | |
build: | |
name: hlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: haskell-actions/hlint-setup@v2 | |
name: Set up HLint | |
with: | |
version: "3.8" | |
- uses: haskell-actions/hlint-run@v2 | |
name: hlint | |
with: | |
path: '["liquidhaskell-boot/src/", "liquidhaskell-boot/src-ghc/"]' | |
fail-on: suggestion |