@@ -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
+ - "dotnet test"