Skip to content

Bump Microsoft.EntityFrameworkCore from 7.0.10 to 7.0.13 #107

Bump Microsoft.EntityFrameworkCore from 7.0.10 to 7.0.13

Bump Microsoft.EntityFrameworkCore from 7.0.10 to 7.0.13 #107

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [ "master" ]
workflow_call:
jobs:
build:
strategy:
matrix:
configuration: [Release]
os: [ubuntu-latest, windows-latest]
name: Build and Test
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
# Fetch NuGet packages from cache
- name: Restore package cache
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj*') }}
restore-keys: |
${{ runner.os }}-nuget
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
# Restore the application to install all dependencies
- name: Install dependencies
run: dotnet restore
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test --no-restore --verbosity normal
# Build on all platforms and configurations
- name: Build ${{ matrix.configuration }} on ${{ matrix.os }}
run: dotnet build --configuration ${{ matrix.configuration }} --no-restore