Skip to content

更新预览测试库 #57

更新预览测试库

更新预览测试库 #57

Workflow file for this run

name: .NET Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
8.0.x
- name: Build with dotnet
run: dotnet build --configuration release
# No need because all tests passed if the solution is successfully built
# - name: Test
# run: dotnet test --configuration release