From 17cbcc38ba9d12cfa70c1dfd55e9323464fa1ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= Date: Tue, 21 Jan 2025 12:58:51 +0100 Subject: [PATCH] chore: just an echo of circleci --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index e69de29..5b70ec6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2.1 + +# Define the jobs we want to run for this project +jobs: + build: + docker: + - image: cimg/base:2023.03 + steps: + - run: echo "so long and thanks for all the fish" + +# Orchestrate our job run sequence +workflows: + build_and_test: + jobs: + - build