Skip to content

Commit 60f6f60

Browse files
authored
Merge pull request #22 from DeepCodeAI/circleci-project-setup
Circleci project setup
2 parents bd1b485 + 686d87b commit 60f6f60

File tree

7 files changed

+49
-1563
lines changed

7 files changed

+49
-1563
lines changed

.circleci/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2.1
2+
3+
jobs:
4+
build:
5+
working_directory: ~/cli-project
6+
docker:
7+
- image: circleci/python:3.8
8+
steps:
9+
- checkout
10+
- run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
11+
- run: poetry install && poetry build
12+
- run: poetry run pytest --maxfail=1 tests

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dist
66
.vscode
77
.pytest_cache
88
.idea
9+
.dccache

0 commit comments

Comments
 (0)