Skip to content

Bump Microsoft.Extensions.Logging from 9.0.10 to 10.0.2 #36

Bump Microsoft.Extensions.Logging from 9.0.10 to 10.0.2

Bump Microsoft.Extensions.Logging from 9.0.10 to 10.0.2 #36

Workflow file for this run

name: Build / Deploy to GH Pages
on:
workflow_dispatch:
push:
branches: [ main, dev ]
paths: src/**
pull_request:
branches: [ main ]
paths: src/**
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v6
- name: ⚙️ Setup .NET 9.0
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: ⬇️ Restore dependencies
run: dotnet restore
working-directory: src
- name: 🔨 Build
run: dotnet build --configuration Release --no-restore
working-directory: src
- name: 🏗️ Generate Site
run: dotnet run --property:Configuration=Release --project src/dotnetbyexample/dotnetbyexample.csproj
- name: 🚀 Deploy Code Coverage Report
uses: JamesIves/github-pages-deploy-action@v4.8.0
with:
branch: gh-pages
folder: site