We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db1315d commit 58139e0Copy full SHA for 58139e0
4 files changed
.github/workflows/ci.yml
@@ -14,6 +14,12 @@ jobs:
14
15
- uses: actions/checkout@v2
16
17
+ - uses: psf/black@stable
18
+ with:
19
+ options: "--check --verbose"
20
+ src: "cvc5_pythonic_api"
21
+ version: "23.3.0"
22
+
23
24
with:
25
repository: cvc5/cvc5
Makefile
@@ -7,7 +7,10 @@ check:
7
pyright ./cvc5_pythonic_api
8
9
fmt:
10
- black ./cvc5_pythonic_api
+ black --required-version 23.3.0 ./cvc5_pythonic_api
11
12
+check-fmt:
13
+ black --check --verbose --required-version 23.3.0 ./cvc5_pythonic_api
coverage:
coverage run test_unit.py && coverage report && coverage html
0 commit comments