Skip to content

Fix NT start after NT3 removal #177

Fix NT start after NT3 removal

Fix NT start after NT3 removal #177

Workflow file for this run

name: dotnet package
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build-test:
strategy:
matrix:
dotnet-version: [ '8.x' ]
target:
- dotnet: win-x64
os: windows-2025
- dotnet: win-arm64
os: windows-11-arm
- dotnet: linux-x64
os: ubuntu-24.04
- dotnet: linux-arm64
os: ubuntu-24.04-arm
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build ${{ matrix.target.dotnet }}
run: dotnet publish -r ${{ matrix.target.dotnet }}
- name: Run tests
run: dotnet test