Skip to content

Fix: chybějící registrace IHxMessageBoxService na serveru (HTTP 500) … #217

Fix: chybějící registrace IHxMessageBoxService na serveru (HTTP 500) …

Fix: chybějící registrace IHxMessageBoxService na serveru (HTTP 500) … #217

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 Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -c Release --verbosity normal --logger "trx" --collect:"XPlat Code Coverage" --results-directory ./TestResults
- name: Upload test results
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v7
with:
name: test-results
path: |
./TestResults/**/*.trx
./TestResults/**/coverage.cobertura.xml
if-no-files-found: ignore