Archived
1
0
Fork 0

Update .gitlab-ci.yml file

This commit is contained in:
Ethanell 2022-05-18 09:38:02 +00:00 committed by flifloo
parent c515481143
commit 2e901dc995
2 changed files with 18 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View 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:.

View 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">&lt;SessionState ContinuousTestingMode="0" IsActive="True" Name="All tests from Solution" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"&gt;&#xD;
&lt;Solution /&gt;&#xD;
&lt;/SessionState&gt;</s:String></wpf:ResourceDictionary>