[Feature] Implement Blender-style global 3D viewport shortcuts (G/R/S) #692
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |