Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

imp - Updated docfx build script to use latest version #8

imp - Updated docfx build script to use latest version

imp - Updated docfx build script to use latest version #8

Workflow file for this run

name: Build Project (Windows)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Debug
- name: Testing
run: dotnet test --configuration Debug
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: nl-build
path: "NativeLand/bin/Debug/"