Skip to content

Commit bb09547

Browse files
authored
Merge pull request #14 from vroncevic/dev
[flask_func_struct] added circle CI, init tests structure
2 parents 57b3856 + f6f490e commit bb09547

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[**.py]
2+
indent_style = tab
3+
tab_width = 4

0 commit comments

Comments
 (0)