File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -34,21 +34,18 @@ jobs:
34
34
- name : Install PSResources
35
35
shell : pwsh
36
36
run : tools/installPSResources.ps1
37
- - name : Build
37
+ - name : Build and test
38
38
shell : pwsh
39
- run : Invoke-Build Build
39
+ run : Invoke-Build
40
40
- name : Upload build artifacts
41
+ if : always()
41
42
uses : actions/upload-artifact@v3
42
- if : matrix.os == 'windows-latest'
43
43
with :
44
- name : PowerShellEditorServices
44
+ name : PowerShellEditorServices-module-${{ matrix.os }}
45
45
path : module
46
- - name : Run tests
47
- shell : pwsh
48
- run : Invoke-Build Test
49
46
- name : Upload test results
50
47
uses : actions/upload-artifact@v3
51
48
if : always()
52
49
with :
53
- name : ${{ matrix.os }}-test-results
50
+ name : PowerShellEditorServices-test-results- ${{ matrix.os }}
54
51
path : ' **/*.trx'
Original file line number Diff line number Diff line change 13
13
14
14
[string ]$DefaultModuleRepository = " PSGallery" ,
15
15
16
- [string ]$Verbosity = " quiet " ,
16
+ [string ]$Verbosity = " minimal " ,
17
17
18
18
# See: https://docs.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests
19
19
[string ]$TestFilter = ' ' ,
You can’t perform that action at this time.
0 commit comments