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 eb2ec13 commit 761401eCopy full SHA for 761401e
.github/workflows/format.yml
@@ -9,10 +9,12 @@ jobs:
9
steps:
10
- uses: actions/checkout@v2
11
12
- # workaround for dotnet tools not being on path https://github.com/actions/virtual-environments/issues/213
13
- - name: add .dotnet/tools to path
14
- run: echo "::set-env name=PATH::${PATH}:${HOME}/.dotnet/tools"
15
-
16
- run: dotnet tool install -g dotnet-format
17
18
- - run: dotnet format --folder ./ --dry-run --check
+ - name: Add dotnet-format problem matcher
+ uses: xt0rted/dotnet-format-problem-matcher@v1
+
+ - name: Run dotnet format
+ uses: xt0rted/dotnet-format@v1
19
+ with:
20
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments