From 0c84817c77d2aeb0e7169928cdf73320e6838b03 Mon Sep 17 00:00:00 2001 From: hallouma875 Date: Wed, 4 Nov 2020 12:36:17 +0100 Subject: [PATCH] add circleci config --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f1f6223 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2.1 # Use version 2.1 to enable orb usage. + +orbs: + win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor. + +jobs: + build: # name of your job + executor: + name: win/default # executor type + size: "medium" # resource class, can be "medium", "large", "xlarge", "2xlarge", defaults to "medium" if not specified + + steps: + # Commands are run in a Windows virtual machine environment + - checkout + - run: Write-Host 'Hello, Windows' \ No newline at end of file