Skip to content

More robust JSON processing with tests and CI #3

More robust JSON processing with tests and CI

More robust JSON processing with tests and CI #3

Workflow file for this run

name: main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Restore NuGet
run: nuget restore
working-directory: ./Source
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Build with MSBuild
run: msbuild /t:ExplorerCommand /t:glTF /t:Tests /p:Configuration=Release /p:Platform=x64 /m
working-directory: ./Source