Browse Source

Update 'python/.circleci/config.yml'

天问 1 year ago
parent
commit
e9db99c0b9
1 changed files with 22 additions and 0 deletions
  1. 22 0
      python/.circleci/config.yml

+ 22 - 0
python/.circleci/config.yml

@@ -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
+      - run:
+          name: Install dependencies
+          command: poetry install
+      - run:
+          name: Run tests
+          command: poetry run pytest
+
+workflows:
+  build-and-test:
+    jobs:
+      - build-and-test