Skip to content

Bump Microsoft.Extensions.DependencyModel from 8.0.0 to 8.0.1 #1393

Bump Microsoft.Extensions.DependencyModel from 8.0.0 to 8.0.1

Bump Microsoft.Extensions.DependencyModel from 8.0.0 to 8.0.1 #1393

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -f net8.0
- name: Test
run: dotnet test Beutl.sln --no-build --verbosity normal -f net8.0