Update .gitlab-ci.yml file
This commit is contained in:
parent
c515481143
commit
2e901dc995
2 changed files with 18 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
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:.
|
4
Tetris.sln.DotSettings.user
Normal file
4
Tetris.sln.DotSettings.user
Normal file
|
@ -0,0 +1,4 @@
|
|||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=576515d5_002Decbd_002D4af0_002D9218_002De8d21f854eb8/@EntryIndexedValue"><SessionState ContinuousTestingMode="0" IsActive="True" Name="All tests from Solution" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
|
||||
<Solution />
|
||||
</SessionState></s:String></wpf:ResourceDictionary>
|
Reference in a new issue