From 4a8c989206e205848e653d8108114bb2ac429c70 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 25 Apr 2026 18:50:14 -0700 Subject: [PATCH] Update EF Core migration check command in workflow --- .github/workflows/PR-Build-And-Test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-Build-And-Test.yml b/.github/workflows/PR-Build-And-Test.yml index af2f3b70..9793b743 100644 --- a/.github/workflows/PR-Build-And-Test.yml +++ b/.github/workflows/PR-Build-And-Test.yml @@ -38,7 +38,7 @@ jobs: run: dotnet build --configuration Release --no-restore /p:AccessToNugetFeed=false - name: Check for pending EF Core model changes - run: dotnet ef migrations has-pending-model-changes --project EssentialCSharp.Web --configuration Release --no-build + run: dotnet tool run dotnet-ef -- migrations has-pending-model-changes --project EssentialCSharp.Web --configuration Release --no-build env: ASPNETCORE_ENVIRONMENT: Development