.gitlab-ci.yml 244 B

123456789101112131415161718
  1. image: mcr.microsoft.com/dotnet/core/sdk:latest
  2. stages:
  3. - build
  4. - test
  5. build:
  6. stage: build
  7. script:
  8. - "dotnet build"
  9. artifacts:
  10. paths:
  11. - bin/
  12. test:
  13. stage: test
  14. script:
  15. - "dotnet test"