| 123456789101112131415161718192021222324252627282930 |
- name: SharpGLTF
- on: [push, pull_request]
- jobs:
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- dotnet-version: [ '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
|