Skip to content

Commit 127ea25

Browse files
committed
Add circleci
1 parent cae85a9 commit 127ea25

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.1
2+
orbs:
3+
python: circleci/python@1.5.0
4+
jobs:
5+
build-and-test:
6+
docker:
7+
- image: cimg/python:3.10.2
8+
steps:
9+
- checkout
10+
- python/install-packages:
11+
pkg-manager: pip
12+
- run:
13+
name: Run tests
14+
command: pytest
15+
workflows:
16+
sample:
17+
jobs:
18+
- build-and-test

0 commit comments

Comments
 (0)