-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1013 Bytes
/
dotnet-inspection.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Inspection with ReSharper
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup .NET tools
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Install ReSharper Command Line Tool
run: |
dotnet tool install -g JetBrains.ReSharper.GlobalTools
- name: Run ReSharper Inspection
run: |
export PATH="$PATH:/root/.dotnet/tools"
jb inspectcode -o=resharper.xml -a src/Plana.sln
- name: Set Matcher
run: |
echo "::add-matcher::.github/resharper.json"
- name: Annotate Results
run: |
cat resharper.xml
# if grep -Eq '<Issue [^>]+>' resharper.xml; then exit 1; fi;