@@ -0,0 +1,22 @@
+version: 2.1
+
+jobs:
+ build-and-test:
+ docker:
+ - image: python:3.9.18
+ steps:
+ - checkout
+ - run:
+ name: Install poetry
+ command: pip install poetry
+ name: Install dependencies
+ command: poetry install
+ name: Run tests
+ command: poetry run pytest
+workflows:
+ jobs:
+ - build-and-test