diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 26de195..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@2.1.1 - -jobs: - build-and-test: - docker: - - image: cimg/python:3.12 - environment: - DJANGO_SETTINGS_MODULE: chowist.settings.test - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - - image: postgres:14 - environment: - POSTGRES_USER: circleci - POSTGRES_PASSWORD: circleci - POSTGRES_DB: circle_test - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - steps: - - checkout - - python/install-packages: - pkg-manager: pip - - run: - name: Lint - command: ruff check - - run: - name: Test - command: coverage run manage.py test - - run: - name: Report - command: coverage report - -workflows: - main: - jobs: - - build-and-test: - context: docker-hub-creds