Fixed out of range when drawing #6
Workflow file for this run
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: NUnit integration test | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
build-windows: | |
name: Windows Build | |
runs-on: windows-latest | |
steps: | |
- name: ⤵️ Checkout Source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🛠️ Setup Submodules | |
run: git submodule update --init --recursive | |
- name: 🛠️ Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: 🛠️ Install dotnet dependencies | |
run: dotnet restore | |
- name: 🛠️ Install dotnet tools | |
run: dotnet tool restore | |
- name: 🔨 Build and Test (Release) | |
run: dotnet test --configuration=Release Hypercube.UnitTests/Hypercube.UnitTests.csproj | |
- name: 🔨 Build and Test (Debug) | |
run: dotnet test --configuration=Debug Hypercube.UnitTests/Hypercube.UnitTests.csproj |