scan for cvc5 before cvc4 + generate the error msg for missing smt #1924
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
# Build the docs on every commit | |
# Also deploy when pushed to 'develop' (if they built OK) | |
# Based off | |
# https://squidfunk.github.io/mkdocs-material/publishing-your-site/?h=deploy#with-github-actions | |
name: Documentation CI/CD | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
jobs: | |
build-docs-job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: pip install \ | |
mkdocs-material \ | |
mkdocs-awesome-pages-plugin \ | |
git+https://github.com/jldiaz/mkdocs-plugin-tags.git | |
- run: cd docs/mkDocs && mkdocs build -s | |
deploy-docs-job: | |
runs-on: ubuntu-latest | |
needs: build-docs-job | |
# Only deploy docs from 'develop' branch (and if they built OK). | |
if: success() && github.ref == 'refs/heads/develop' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: pip install \ | |
mkdocs-material \ | |
mkdocs-awesome-pages-plugin \ | |
git+https://github.com/jldiaz/mkdocs-plugin-tags.git | |
- run: cd docs/mkDocs && mkdocs gh-deploy --force | |