This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
refactor: 重构依赖解析方法。取消递归并增加类型成员缓存,消除在大量依赖和循环依赖下的性能问题。 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Workflow | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'production' | |
jobs: | |
test-nautowired-console: | |
name: test nautowired console | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: NAutowired.Console.Test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '6.0.x' | |
- run: "dotnet test NAutowired.Console.Test.csproj" | |
name: 'Unit Test' |