|
|
@@ -0,0 +1,30 @@
|
|
|
+name: Test project on a all platforms
|
|
|
+
|
|
|
+on: workflow_dispatch
|
|
|
+
|
|
|
+jobs:
|
|
|
+ build:
|
|
|
+
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ dotnet-version: [ '6.0.x', '8.0.x' ]
|
|
|
+ os: [windows-latest, ubuntu-latest, macos-latest]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v4
|
|
|
+
|
|
|
+ - name: Setup dotnet ${{ matrix.dotnet-version }}
|
|
|
+ uses: actions/setup-dotnet@v4
|
|
|
+ with:
|
|
|
+ dotnet-version: ${{ matrix.dotnet-version }}
|
|
|
+
|
|
|
+ - name: Install dependencies
|
|
|
+ run: dotnet restore
|
|
|
+
|
|
|
+ - name: Build
|
|
|
+ # https://github.com/dotnet/core/issues/7840 failed to build with 0 errors
|
|
|
+ run: dotnet build --configuration Debug --no-restore --disable-build-servers
|
|
|
+
|
|
|
+ - name: Test
|
|
|
+ run: dotnet test ./tests/SharpGLTF.Ext.3DTiles.Tests/SharpGLTF.Ext.3DTiles.Tests.csproj --no-build --verbosity diagnostic
|