Skip to content

重构,防止不知道调用哪个方法 #25

重构,防止不知道调用哪个方法

重构,防止不知道调用哪个方法 #25

Workflow file for this run

name: .NET Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release