添加 '.circleci/config.yml'

develop
gogsadmin 2024-01-15 07:48:21 +00:00
parent fa3825cfde
commit 82ea1823cc
1 changed files with 23 additions and 0 deletions

23
.circleci/config.yml Normal file
View File

@ -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