Skip to content

Serilog logging

Serilog logging #34

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Run Test Cases
# Controls when the workflow will run
on:
pull_request:
branches: [ "latest", "dev" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal