mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-19 16:33:36 +03:00
Bumps [muno92/resharper_inspectcode](https://github.com/muno92/resharper_inspectcode) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/muno92/resharper_inspectcode/releases) - [Changelog](https://github.com/muno92/resharper_inspectcode/blob/main/CHANGELOG.md) - [Commits](https://github.com/muno92/resharper_inspectcode/compare/1.11.0...1.11.1) --- updated-dependencies: - dependency-name: muno92/resharper_inspectcode dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
783 B
YAML
31 lines
783 B
YAML
name: "ReSharper"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
merge_group:
|
|
types: [ checks_requested ]
|
|
|
|
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@v4
|
|
|
|
- name: ReSharper CLI InspectCode
|
|
uses: muno92/resharper_inspectcode@1.11.1
|
|
with:
|
|
solutionPath: ./Octobot.sln
|
|
ignoreIssueType: InvertIf, ConvertIfStatementToSwitchStatement, ConvertToPrimaryConstructor
|
|
extensions: ReSharperPlugin.CognitiveComplexity
|
|
solutionWideAnalysis: true
|