Skip to content

尝试修复构建

尝试修复构建 #34

Workflow file for this run

name: .NET Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
10.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release