From 457c306cc7e3d4b59db093d57f732bd59bae3fc5 Mon Sep 17 00:00:00 2001 From: Manjurul Hoque Rumi Date: Wed, 29 May 2024 13:26:37 +0600 Subject: [PATCH] CircleCI Commit --- .circleci/config.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6d52aac --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,38 @@ +# This config was automatically generated from your source code +# Stacks detected: cicd:github-actions:.github/workflows,cicd:jenkins:.,deps:python:.,file:manage.py:. +version: 2.1 +orbs: + python: circleci/python@2 +jobs: + test-python: + # Install dependencies and run tests + docker: + - image: cimg/python:3.8-node + steps: + - checkout + - python/install-packages + - run: + name: Run tests + command: python manage.py test + deploy: + # This is an example deploy job, not actually used by the workflow + docker: + - image: cimg/base:stable + steps: + # Replace this with steps to deploy to users + - run: + name: deploy + command: '#e.g. ./deploy.sh' + - run: + name: found github actions config + command: ':' + - run: + name: found jenkins config + command: ':' +workflows: + build-and-test: + jobs: + - test-python + # - deploy: + # requires: + # - test-python