Added ray casting (#5) #21
This file contains 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: .NET | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Setup NuGet | |
uses: Nuget/setup-nuget@v2 | |
- name: Restore NuGet packages | |
run: nuget restore QTree.sln | |
- name: Restore dependencies | |
run: dotnet restore QTree.sln | |
- name: Build | |
run: dotnet build QTree.sln --no-restore | |
- name: Test | |
run: dotnet test QTree.sln --no-build --verbosity normal |