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.
2 parents 57b3856 + f6f490e commit bb09547Copy full SHA for bb09547
.circleci/config.yml
@@ -0,0 +1,21 @@
1
+version: 2.1
2
+executors:
3
+ flask_func_struct-executor:
4
+ docker:
5
+ - image: cimg/python:3.8.10
6
+ auth:
7
+ username: $DOCKER_HUB_USER
8
+ password: $DOCKER_HUB_PASSWORD
9
+jobs:
10
+ flask_func_struct:
11
+ executor: flask_func_struct-executor
12
+ steps:
13
+ - checkout
14
+ - run: |
15
+ python3 -m pip install --upgrade setuptools
16
+ python3 -m pip install --upgrade pip
17
+ python3 -m pip install --upgrade build
18
+workflows:
19
+ flask_func_struct-workflow:
20
+ jobs:
21
+ - flask_func_struct
tests/.editorconfig
@@ -0,0 +1,3 @@
+[**.py]
+indent_style = tab
+tab_width = 4
0 commit comments