Skip to content

加上注释

加上注释 #16

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