Skip to content

docs: remove TOC

docs: remove TOC #68

Workflow file for this run

name: test
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
jobs:
test:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Clean
run: dotnet clean ./AllMyLights.sln --configuration Release && dotnet nuget locals all --clear
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --logger:"console;verbosity=normal"