Skip to content

test

test #7

Workflow file for this run

name: test
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore PowerThreadPool/PowerThreadPool.csproj
- name: Build
run: dotnet build PowerThreadPool/PowerThreadPool.csproj --no-restore