Skip to content

feat: POWER-4723 - Add support for fallback rating flag in Heimdall DLR and Circuit Rating #21

feat: POWER-4723 - Add support for fallback rating flag in Heimdall DLR and Circuit Rating

feat: POWER-4723 - Add support for fallback rating flag in Heimdall DLR and Circuit Rating #21

name: .NET Build and Test
on:
push:
branches: [ main ]
paths:
- 'dotnet/**'
pull_request:
branches: [ main ]
paths:
- 'dotnet/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: dotnet
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run unit tests
run: dotnet test --no-build --filter Category=Unit