Upgrade to .NET 8 (and re-write some MVMM components) #57
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: Quality | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
quality: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Restore Project/Tools | |
run: | | |
dotnet restore | |
dotnet tool install --global NVika | |
dotnet tool install --global JetBrains.ReSharper.GlobalTools | |
- name: InspectCode | |
run: jb inspectcode DragonFruit.Kaplan.sln --output=inspectcodereport.xml --verbosity=WARN --no-build | |
- name: Vika | |
run: nvika parsereport "${{github.workspace}}/inspectcodereport.xml" |