From 8137b7b4496de0a9fea51f5d9211f2cfcf78df08 Mon Sep 17 00:00:00 2001 From: Bruno Bueno <50339799+brunobueno87@users.noreply.github.com> Date: Wed, 3 Apr 2024 18:54:34 -0300 Subject: [PATCH] CircleCI Commit --- .circleci/config.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..fec6260 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,43 @@ +# Couldn't automatically generate a config from your source code. +# This is a generic template to serve as a base for your custom config +# See: https://circleci.com/docs/configuration-reference +version: 2.1 +jobs: + test: + docker: + - image: cimg/base:stable + steps: + - checkout + # Replace this with a real test runner invocation + - run: + name: Run tests + command: echo 'replace me with real tests!' && false + build: + docker: + - image: cimg/base:stable + steps: + - checkout + # Replace this with steps to build a package, or executable + - run: + name: Build an artifact + command: touch example.txt + - store_artifacts: + path: example.txt + deploy: + docker: + - image: cimg/base:stable + steps: + # Replace this with steps to deploy to users + - run: + name: deploy + command: '#e.g. ./deploy.sh' +workflows: + example: + jobs: + - test + - build: + requires: + - test + - deploy: + requires: + - test