diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index a759546..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,35 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@2.1.1 - codecov: codecov/codecov@3.2.3 - -jobs: - build-and-test: - docker: - - image: cimg/python:3.12 - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - steps: - - checkout - - python/install-packages: - pkg-manager: pip - - run: - command: ruff check ultimatepython - name: Lint - - run: - command: coverage run -m runner - name: Test - - run: - command: coverage xml -o /tmp/coverage.xml - name: Prepare coverage results - - store_artifacts: - path: /tmp/coverage.xml - - codecov/upload: - file: /tmp/coverage.xml - -workflows: - main: - jobs: - - build-and-test