Skip to content

.NET Test

.NET Test #4

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Test
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 6.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.x'
- name: Display dotnet version
run: dotnet --version
- name: Install dotnet tools
run: dotnet tool install -g docfx --version 2.61.0
- name: Disply doxfx version
run: docfx --version