We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d83f40e commit a5a1524Copy full SHA for a5a1524
.config/dotnet-tools.json
@@ -0,0 +1,13 @@
1
+{
2
+ "version": 1,
3
+ "isRoot": true,
4
+ "tools": {
5
+ "dotnet-format": {
6
+ "version": "5.1.250801",
7
+ "commands": [
8
+ "dotnet-format"
9
+ ],
10
+ "rollForward": false
11
+ }
12
13
+}
.github/workflows/build.yml
@@ -19,9 +19,15 @@ jobs:
19
with:
20
fetch-depth: 0 # Important for minver to create the right version number
21
22
+ - name: Install tools
23
+ run: dotnet tool restore
24
+
25
- name: Restore
26
run: dotnet restore
27
28
+ - name: Format
29
+ run: dotnet dotnet-format --verify-no-changes
30
31
- name: Build
32
run: dotnet build --configuration Release --no-restore
33
0 commit comments