Skip to content

Commit 56df884

Browse files
Merge pull request #2 from pratapaprasanna/circleci-project-setup
Add .circleci/config.yml
2 parents 1d67e1e + 587130b commit 56df884

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2.1
2+
3+
orbs:
4+
python: circleci/[email protected]
5+
6+
workflows:
7+
sample:
8+
jobs:
9+
- lint-check
10+
11+
jobs:
12+
lint-check:
13+
docker:
14+
- image: cimg/python:3.8
15+
steps:
16+
- checkout
17+
- run: |
18+
pip install poetry==1.0.0
19+
poetry install
20+
poetry run black --check .

0 commit comments

Comments
 (0)