Skip to content

chore(Test): 更新测试引用包的版本 #72

chore(Test): 更新测试引用包的版本

chore(Test): 更新测试引用包的版本 #72

Workflow file for this run

name: Test
on:
push:
branches: [main]
paths:
- src/**
pull_request:
branches: [main]
paths:
- src/**
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on:
# For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Install the .NET Core workload: https://github.com/actions/setup-dotnet
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Execute unit tests
run: |
dotnet test ./src/DotVast.HashTool.WinUI.Core.Tests/DotVast.HashTool.WinUI.Core.Tests.csproj --configuration ${{ matrix.configuration }}