Skip to content

chore(deps): bump Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore from 8.0.8 to 8.0.10 in /src #25

chore(deps): bump Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore from 8.0.8 to 8.0.10 in /src

chore(deps): bump Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore from 8.0.8 to 8.0.10 in /src #25

Workflow file for this run

name: .NET Core Desktop
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
Solution_Name: OA.sln
Test_Project_Path: ./src
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}