Skip to content

[NEW] Integrate Wolverine and Marten into the project #73

[NEW] Integrate Wolverine and Marten into the project

[NEW] Integrate Wolverine and Marten into the project #73

# 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 & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Install .NET Aspire workload
run: dotnet workload install aspire
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --logger:"junit;LogFilePath=dotnet-test-result.xml"
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "**/dotnet-test-result.xml"
if: success() || failure()