dev: run examples on stable version #615
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
autoformatter: | |
strategy: | |
fail-fast: false | |
matrix: | |
source-dir: ["./src/", "./examples/src/", "./slo/src/"] | |
include: | |
- source-dir: "./src/" | |
solutionFile: "YdbSdk.sln" | |
- source-dir: "./examples/src/" | |
solutionFile: "YdbExamples.sln" | |
- source-dir: "./slo/src/" | |
solutionFile: "src.sln" | |
name: autoformat check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore | |
run: dotnet restore ${{ matrix.source-dir }}${{ matrix.solutionFile }} | |
- name: Install ReSharper | |
run: dotnet tool install -g JetBrains.ReSharper.GlobalTools | |
- name: format all files with auto-formatter | |
run: bash ./.github/scripts/format-all-dotnet-code.sh ${{ matrix.source-dir }} ${{ matrix.solutionFile }} "Custom Cleanup" | |
- name: Check repository diff | |
run: bash ./.github/scripts/check-work-copy-equals-to-committed.sh "auto-format broken" | |
inspection: | |
strategy: | |
fail-fast: false | |
matrix: | |
solutionPath: ["./src/YdbSdk.sln", "./examples/src/YdbExamples.sln", "./slo/src/src.sln"] | |
runs-on: ubuntu-latest | |
name: Inspection | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore | |
run: dotnet restore ${{ matrix.solutionPath }} | |
- name: Inspect code | |
uses: muno92/resharper_inspectcode@v1 | |
with: | |
solutionPath: ${{ matrix.solutionPath }} | |
version: 2023.2.1 | |
include: | | |
**.cs | |
**.cshtml | |
minimumReportSeverity: WARNING | |
ignoreIssueType: | | |
UnusedField.Compiler, | |
UnusedVariable.Compiler, | |
UnusedAutoPropertyAccessor.Global, | |
UnusedAnonymousMethodSignature, | |
UnusedNullableDirective, | |
UnusedTupleComponentInReturnValue, | |
UnusedLocalFunction.Compiler, | |
UnusedLocalFunctionReturnValue, | |
UnusedMethodReturnValue.Global, | |
UnusedType.Global, | |
UnusedMemberInSuper.Global, | |
UnusedMember.Global, | |
UnusedMemberHierarchy.Global, | |
UnusedLabel, | |
UnusedParameter.Global, | |
UnusedParameterInPartialMethod, | |
UnusedPositionalParameterCompiler, | |
UnusedTypeParameter, | |
NotAccessedField.Compiler, | |
NotAccessedVariable.Compiler, | |
NotAccessedField.Global, | |
NotAccessedPositionalProperty.Global, | |
NotAccessedVariable, | |
NotAccessedOutParameterVariable, | |
NotAccessedPrimaryConstructorParameterCompiler, | |
InconsistentNaming, | |
CollectionNeverUpdated.Global |