Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Tetris/.gitlab-ci.yml

15 lines
414 B
YAML
Raw Normal View History

2022-05-18 11:38:02 +02:00
stages: # List of stages for jobs, and their order of execution
- build
- test
build: # This job runs in the build stage, which runs first.
stage: build
script:
- dotnet restore
- dotnet build
unit-test: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- dotnet test --test-adapter-path:.