File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 7
7
branches : ["dev", "master"]
8
8
workflow_dispatch : # manual trigger
9
9
10
+ env :
11
+ DOTNET_ARGS : >
12
+ -c Release
13
+ /p:CollectCoverage=true
14
+ /p:Threshold=80
15
+ /p:Include="[Flurl]*%2C[Flurl.Http]*%2C[Flurl.Http.Newtonsoft]*"
16
+ /p:Exclude="[*]*.GeneratedExtensions"
17
+
10
18
jobs :
11
19
build-test-ubuntu :
12
20
runs-on : ubuntu-latest
23
31
run : dotnet restore
24
32
25
33
- name : Test
26
- run : dotnet test --framework net6.0 -c Release /p:CollectCoverage=true /p:Threshold=80 /p:Include=\"[Flurl]*,[Flurl.Http]*,[Flurl.Http.Newtonsoft]*\" /p:Exclude="[*]*.GeneratedExtensions"
34
+ run : dotnet test --framework net6.0 $DOTNET_ARGS
27
35
28
36
build-test-windows :
29
37
runs-on : windows-latest
38
46
run : dotnet restore
39
47
40
48
- name : Test
41
- run : dotnet test --framework ${{ matrix.framework }} -c Release /p:CollectCoverage=true /p:Threshold=80 /p:Include="[Flurl]*%2c[Flurl.Http]*%2c[Flurl.Http.Newtonsoft]*" /p:Exclude="[*]*.GeneratedExtensions"
49
+ run : dotnet test --framework ${{ matrix.framework }} $DOTNET_ARGS
You can’t perform that action at this time.
0 commit comments