Skip to content

made all the helpers to readonly record struct for performance boost. #6

made all the helpers to readonly record struct for performance boost.

made all the helpers to readonly record struct for performance boost. #6

Workflow file for this run

name: DotNet 8
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup DotNet 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore dependencies
run: dotnet restore "SharpOutcome.sln"
- name: Build
run: dotnet build "SharpOutcome.sln" --configuration Release --no-restore