Skip to content

Commit

Permalink
Merge pull request #33 from Certora/fix_readme
Browse files Browse the repository at this point in the history
Fix readme
  • Loading branch information
chandrakananandi authored Dec 22, 2023
2 parents 05abe4a + 73a1558 commit 5858eb3
Show file tree
Hide file tree
Showing 5 changed files with 556 additions and 72 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/gambit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,24 @@ jobs:
else
gh release upload $TAG gambit-linux-$TAG/gambit-linux-$TAG
gh release upload $TAG gambit-macos-$TAG/gambit-macos-$TAG
fi
fi
check-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: PIP install
run: pip install ansi

- name: Check that RTD Docs are Up To Date
run: python3 scripts/check_rtd_docs_up_to_date.py

- name: Check Exit Code
run: |
if [[ $? -ne 0 ]]; then
echo "Error: documentation is not synced"
exit 1
fi
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ Cargo.lock

# vscode
.vscode/

# python
**/__pycache__/
Loading

0 comments on commit 5858eb3

Please sign in to comment.