Skip to content

Migrate documentation to docfx #14

Migrate documentation to docfx

Migrate documentation to docfx #14

Workflow file for this run

name: Build, Test, and Format verification
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
framework: [net9.0, net8.0]
include:
- os: windows-latest
framework: net462
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
8.0.x
- name: Build
run: dotnet build
- name: Test
run: dotnet test -f ${{ matrix.framework }} --no-build --no-restore
test-documentation:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
8.0.x
- name: Build documentation
run: dotnet run --project 'build/build.fsproj'
format-verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Format
run: dotnet format --verify-no-changes