We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 807ed6d commit b23985fCopy full SHA for b23985f
.github/workflows/TestCommit.yml
@@ -13,13 +13,17 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v4
16
+
17
- name: Setup dotnet ${{ matrix.dotnet-version }}
18
uses: actions/setup-dotnet@v4
19
with:
20
dotnet-version: ${{ matrix.dotnet-version }}
21
22
- name: Install dependencies
23
run: dotnet restore
24
25
- name: Build
- run: dotnet build
26
+ run: dotnet build --configuration Debug --no-restore
27
28
- name: Test
- run: dotnet test ./tests/SharpGLTF.Ext.3DTiles.Tests/SharpGLTF.Ext.3DTiles.Tests.csproj
29
+ run: dotnet test ./tests/SharpGLTF.Ext.3DTiles.Tests/SharpGLTF.Ext.3DTiles.Tests.csproj --no-build --verbosity normal
0 commit comments