Disable AI chat bot #49
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
inspect: | |
name: Build and Inspect | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: .NET Setup | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0 | |
- name: .NET Build | |
shell: bash | |
run: dotnet build | |
- name: JetBrains Inspect Code | |
run: dotnet tool install -g JetBrains.ReSharper.GlobalTools && jb inspectcode --no-build --verbosity=TRACE --debug --swea --output=inspectcode.xml Numerous.sln | |
- name: Inspection Report | |
run: dotnet tool install -g nvika && nvika parsereport "${{ github.workspace }}/inspectcode.xml" --treatwarningsaserrors |