Skip to content

Commit bda23e3

Browse files
authored
Merge pull request #14 from RedisAI/circleci-project-setup
Add .circleci/config.yml
2 parents d836dba + da1e4d4 commit bda23e3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-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+
3+
orbs:
4+
python: circleci/python@0.2.1
5+
6+
jobs:
7+
build-and-test:
8+
executor: python/default
9+
steps:
10+
- checkout
11+
- python/load-cache
12+
- python/install-deps
13+
- python/save-cache
14+
- run:
15+
command: ./manage.py test
16+
name: Test
17+
18+
workflows:
19+
main:
20+
jobs:
21+
- build-and-test

0 commit comments

Comments
 (0)