File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,14 @@ jobs:
206
206
dotnet restore ${{ github.workspace }}/TemplateTestMstest --source https://api.nuget.org/v3/index.json --source ${{ env.NUGET_DIRECTORY }}
207
207
dotnet test ${{ github.workspace }}/TemplateTestMstest
208
208
209
+ - name : ✔ Verify TUnit template
210
+ run : |
211
+ dotnet new bunit --framework tunit --no-restore -o ${{ github.workspace }}/TemplateTestTUnit
212
+ echo '<?xml version="1.0" encoding="utf-8"?><Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"></Project>' >> ${{ github.workspace }}/TemplateTestTUnit/Directory.Build.props
213
+ echo '<Project><PropertyGroup><ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally></PropertyGroup></Project>' >> ${{ github.workspace }}/TemplateTestTUnit/Directory.Packages.props
214
+ dotnet restore ${{ github.workspace }}/TemplateTestTUnit --source https://api.nuget.org/v3/index.json --source ${{ env.NUGET_DIRECTORY }}
215
+ dotnet test ${{ github.workspace }}/TemplateTestTUnit
216
+
209
217
validate-docs :
210
218
runs-on : ubuntu-latest
211
219
steps :
You can’t perform that action at this time.
0 commit comments