Skip to content

feat: interactive timeline plugin #192

feat: interactive timeline plugin

feat: interactive timeline plugin #192

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@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
global-json-file: global.json
- name: Restore
run: dotnet restore Netdocs.slnx
- name: Format check (lint)
run: dotnet format Netdocs.slnx --verify-no-changes --no-restore
- name: Build
run: dotnet build Netdocs.slnx -c Release --no-restore
- name: Test
run: dotnet test Netdocs.slnx -c Release --no-build --verbosity normal