From 82ea1823cc2bd9de19edd949ab6793c3121da57e Mon Sep 17 00:00:00 2001 From: gogsadmin Date: Mon, 15 Jan 2024 07:48:21 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20'.circleci/config.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b5add3c --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +version: 2.1 + +jobs: + build: + docker: + - image: mcr.microsoft.com/dotnet/sdk:6.0 + + working_directory: ~/repo + + steps: + - checkout + + - run: + name: Install dependencies + command: dotnet restore + + - run: + name: Build + command: dotnet build + + - run: + name: Test + command: dotnet test