Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059aa75 commit ffa5eebCopy full SHA for ffa5eeb
.circleci/config.yml
@@ -1,6 +1,19 @@
1
version: 2
2
3
jobs:
4
+ check-code-formatting:
5
+ docker:
6
+ - image: circleci/python:3.7-stretch-node-browsers
7
+
8
+ steps:
9
+ - checkout
10
+ - run:
11
+ name: Install black
12
+ command: 'sudo pip install black'
13
14
+ name: Check formatting with black
15
+ command: 'black --check .'
16
17
# Core
18
python-2.7-core:
19
docker:
@@ -341,6 +354,9 @@ jobs:
341
354
342
355
workflows:
343
356
357
+ code_formatting:
358
+ jobs:
359
+ - check-code-formatting
344
360
dev_build:
345
361
346
362
- plotlyjs_dev_build
0 commit comments