File tree Expand file tree Collapse file tree 3 files changed +40
-44
lines changed Expand file tree Collapse file tree 3 files changed +40
-44
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ dotnet_naming_symbols.static_fields.applicable_kinds = field
66
66
dotnet_naming_symbols.static_fields.required_modifiers = static
67
67
dotnet_naming_symbols.static_fields.applicable_accessibilities = private, internal, private_protected
68
68
dotnet_naming_style.static_prefix_style.required_prefix = s_
69
- dotnet_naming_style.static_prefix_style.capitalization = camel_case
69
+ dotnet_naming_style.static_prefix_style.capitalization = camel_case
70
70
71
71
# internal and private fields should be _camelCase
72
72
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
@@ -75,7 +75,7 @@ dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_
75
75
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
76
76
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
77
77
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
78
- dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
78
+ dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
79
79
80
80
# Code style defaults
81
81
csharp_using_directive_placement = outside_namespace:suggestion
@@ -183,3 +183,7 @@ indent_size = 2
183
183
end_of_line = lf
184
184
[* .{cmd, bat} ]
185
185
end_of_line = crlf
186
+
187
+ # YAML files
188
+ [* .yml ]
189
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ name : Build (Linux)
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+
13
+ services :
14
+ rabbitmq :
15
+ image : rabbitmq:3.8.9-management
16
+ ports :
17
+ - 5672:5672
18
+ - 15672:15672
19
+
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+
23
+ - name : Setup .NET Core
24
+ uses : actions/setup-dotnet@v1
25
+ with :
26
+ dotnet-version : 3.1.x
27
+
28
+ - name : Build
29
+ run : dotnet build --configuration Release
30
+
31
+ - name : Test
32
+ run : dotnet test --configuration Release --framework 'netcoreapp3.1' --no-build
33
+ env :
34
+ RABBITMQ_RABBITMQCTL_PATH : DOCKER:${{job.services.rabbitmq.id}}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments