Skip to content

Only windows can build all #567

Only windows can build all

Only windows can build all #567

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
Everything:
runs-on: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.x'
- name: .NET Workload restore
run: dotnet workload restore
- name: Restore NuGet Packages
run: dotnet restore CSharpMath.sln
- name: Build Everything
run: dotnet build CSharpMath.sln /p:Configuration=Release