Skip to content

Commit 25816cd

Browse files
author
Arthur Jen
committed
Merge branch 'master' of github.com:fortmatic/magic-admin-python into ajen_issue_5_add_contribute_n_changelog
2 parents ed984aa + 77e599f commit 25816cd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
3+
orbs:
4+
python: circleci/python@0.2.1
5+
6+
jobs:
7+
build-and-test:
8+
docker:
9+
- image: circleci/python:3.6.5
10+
steps:
11+
- checkout
12+
- python/load-cache
13+
- run:
14+
command: make development
15+
name: Install deps
16+
- python/save-cache
17+
- run:
18+
command: source virtualenv_run/bin/activate; make test
19+
name: Run tests
20+
21+
workflows:
22+
main:
23+
jobs:
24+
- build-and-test

0 commit comments

Comments
 (0)