commit
e17c0e10e7
@ -0,0 +1,18 @@
|
|||||||
|
image: microsoft/dotnet:latest
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- dotnet restore
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- dotnet build -c Release --no-restore
|
||||||
|
- dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_PROJECT_DIR/build/release
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- dotnet test --no-restore
|
Loading…
Reference in new issue