Skip to content

send messages to default address if there are no recipients #44

send messages to default address if there are no recipients

send messages to default address if there are no recipients #44

Workflow file for this run

name: Build & Test
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore packages
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build ./Bss.Platform.sln --no-restore
- name: Run unit tests
working-directory: ./src
run: dotnet test ./Tests.Unit --no-build --verbosity normal