Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:

- uses: actions/checkout@v2

- uses: psf/black@stable
with:
options: "--check --verbose"
src: "cvc5_pythonic_api"
version: "23.3.0"

- uses: actions/checkout@v2
with:
repository: cvc5/cvc5
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ check:
pyright ./cvc5_pythonic_api

fmt:
black ./cvc5_pythonic_api
black --required-version 23.3.0 ./cvc5_pythonic_api

check-fmt:
black --check --verbose --required-version 23.3.0 ./cvc5_pythonic_api

coverage:
coverage run test_unit.py && coverage report && coverage html
Loading