Browse Source

Add 'dotnet/.gitlab-ci.yml'

天问 3 years ago
parent
commit
db919a0dc0
1 changed files with 18 additions and 0 deletions
  1. 18 0
      dotnet/.gitlab-ci.yml

+ 18 - 0
dotnet/.gitlab-ci.yml

@@ -0,0 +1,18 @@
+image: mcr.microsoft.com/dotnet/core/sdk:latest
+
+stages:
+    - build
+    - test
+
+build:
+    stage: build
+    script:
+        - "dotnet build"
+    artifacts:
+      paths:
+        - bin/
+
+test:
+    stage: test
+    script: 
+        - "dotnet test"