Bump Moq from 4.18.4 to 4.20.1 #451
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
DOTNET_VERSION: 7.0.x | |
jobs: | |
build: | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Use .NET ${{ env.DOTNET_VERSION }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Build solutions | |
run: dotnet build .\WinQuickLook.sln -c Release -p:Platform=x64 | |
- name: Run test cases | |
run: dotnet test .\WinQuickLook.sln -c Release -p:Platform=x64 --no-build | |
- name: Lint C# code | |
run: dotnet format .\WinQuickLook.sln --verify-no-changes --verbosity detailed --no-restore |