Skip to content

Update dependency Serilog to v4 #177

Update dependency Serilog to v4

Update dependency Serilog to v4 #177

Workflow file for this run

name: Check Build
on:
workflow_dispatch:
push:
branches: [ dev ]
paths-ignore:
- '**.md'
pull_request:
branches: [ dev ]
paths-ignore:
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dotnet-version:
- 8.x
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src