Skip to content

[Feature] Implement Blender-style global 3D viewport shortcuts (G/R/S) #692

[Feature] Implement Blender-style global 3D viewport shortcuts (G/R/S)

[Feature] Implement Blender-style global 3D viewport shortcuts (G/R/S) #692

Workflow file for this run

name: Run-Unit-Test
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build the project
run: dotnet build AssetEditor\AssetEditor.csproj --no-restore
- name: Run all tests
run: dotnet test AssetEditor.sln --configuration Release --no-restore --verbosity normal