如果目标编译器不满足分析器和源生成器要求,则报告编译错误 #216
Workflow file for this run
This file contains hidden or 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: .NET Build | |
| on: [push] | |
| 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 | |
| 9.0.x | |
| - name: Build | |
| run: dotnet build -c release | |
| - name: Test Debug | |
| run: dotnet test -c debug | |
| - name: Test Release | |
| run: dotnet test -c release | |
| - name: Pack | |
| run: dotnet pack ./src/DotNetCampus.CommandLine -c release --no-build |