Skip to content

update docs

update docs #14

Workflow file for this run

name: dotnet
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
name: Build dotnet 8.0
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- run: dotnet restore
- run: dotnet build Navs.sln -f net8.0 --configuration Release --no-restore
buildnet6:
runs-on: ubuntu-latest
name: Build dotnet 6.0
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "6.0.x"
- run: dotnet restore
- run: dotnet build Navs.sln -f net6.0 --configuration Release --no-restore