image: microsoft/dotnet:latest before_script: - cd TheGameExtreme - dotnet restore view - dotnet restore model build: stage : build script: - dotnet build -c Release --no-restore view - dotnet build -c Release --no-restore model - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release view - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release model unit_tests: stage : test script: - dotnet test --no-restore view - dotnet test --no-restore model