File tree 1 file changed +20
-20
lines changed
1 file changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,19 @@ name: Code Coverage
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [main]
6
6
paths-ignore :
7
- - ' **.md'
7
+ - " **.md"
8
8
pull_request :
9
- branches : [ main ]
9
+ branches : [main]
10
10
paths-ignore :
11
- - ' **.md'
11
+ - " **.md"
12
12
13
13
jobs :
14
14
build-test-report :
15
15
strategy :
16
16
matrix :
17
- os : [ ubuntu-latest, windows-latest ]
17
+ os : [ubuntu-latest, windows-latest]
18
18
19
19
runs-on : ${{ matrix.os }}
20
20
@@ -23,22 +23,22 @@ jobs:
23
23
with :
24
24
fetch-depth : 0
25
25
26
- - name : Setup .NET SDK
27
- uses : actions/setup-dotnet@v4
28
- env :
29
- NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
- with :
31
- dotnet-version : |
32
- 6.0.x
33
- 8.0.x
34
- source-url : https://nuget.pkg.github.com/open-feature/index.json
26
+ - name : Setup .NET SDK
27
+ uses : actions/setup-dotnet@v4
28
+ env :
29
+ NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
+ with :
31
+ dotnet-version : |
32
+ 6.0.x
33
+ 8.0.x
34
+ source-url : https://nuget.pkg.github.com/open-feature/index.json
35
35
36
36
- name : Run Test
37
37
run : dotnet test --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
38
38
39
-
40
- with :
41
- name : Code Coverage for ${{ matrix.os }}
42
- fail_ci_if_error : true
43
- verbose : true
44
- token : ${{ secrets.CODECOV_UPLOAD_TOKEN }}
39
+
40
+ with :
41
+ name : Code Coverage for ${{ matrix.os }}
42
+ fail_ci_if_error : true
43
+ verbose : true
44
+ token : ${{ secrets.CODECOV_UPLOAD_TOKEN }}
You can’t perform that action at this time.
0 commit comments