Skip to content

Fix unnecessary GitHub Actions version specificity, update old actions, and update to modern GitHub Pages deployment #105

Fix unnecessary GitHub Actions version specificity, update old actions, and update to modern GitHub Pages deployment

Fix unnecessary GitHub Actions version specificity, update old actions, and update to modern GitHub Pages deployment #105

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
workflow_call:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore NuGet Packages
run: dotnet restore Bonsai.ML.sln
- name: Build Solution
run: dotnet build Bonsai.ML.sln -c Release