Skip to content

Bump Moq from 4.18.4 to 4.20.1 #451

Bump Moq from 4.18.4 to 4.20.1

Bump Moq from 4.18.4 to 4.20.1 #451

Workflow file for this run

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