mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
0938f518f8
Bumps muno92/resharper_inspectcode from 1.7.1 to 1.8.0. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
784 B
YAML
35 lines
784 B
YAML
name: "ReSharper"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
merge_group:
|
|
types: [checks_requested]
|
|
push:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
inspect-code:
|
|
name: Inspect code
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Restore dependencies and tools
|
|
run: dotnet restore
|
|
|
|
- name: ReSharper CLI InspectCode
|
|
uses: muno92/resharper_inspectcode@1.8.0
|
|
with:
|
|
solutionPath: ./Boyfriend.sln
|
|
ignoreIssueType: InvertIf, ConvertIfStatementToSwitchStatement
|
|
solutionWideAnalysis: true
|