Skip to content

Bump Microsoft.Extensions.Logging.Abstractions from 7.0.0 to 8.0.0 #57

Bump Microsoft.Extensions.Logging.Abstractions from 7.0.0 to 8.0.0

Bump Microsoft.Extensions.Logging.Abstractions from 7.0.0 to 8.0.0 #57

Workflow file for this run

name: Build PR
on:
pull_request:
branches:
- main
paths-ignore:
- README.md
- LICENSE
- CHANGELOG.md
- docs/**
jobs:
Build:
runs-on: ubuntu-latest
env:
buildConfiguration: 'Release'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: >
dotnet build
--configuration $buildConfiguration
--no-restore
- name: Test
run: >
dotnet test
--configuration $buildConfiguration
--no-build
--verbosity normal
--collect "Code coverage"