Skip to content

Use chunk-based partitioning instead of round-robin #51

Use chunk-based partitioning instead of round-robin

Use chunk-based partitioning instead of round-robin #51

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore Asynkron.TestRunner.sln
- name: Build
run: dotnet build Asynkron.TestRunner.sln -c Release --nologo
- name: Test
run: dotnet test Asynkron.TestRunner.sln -c Release --no-build --verbosity normal