Matt
Results
2
comments of
Matt
My GitHub Action to ensure that no new migrations are needed ```yaml migration-test: name: Migration Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v1 with: dotnet-version:...
Our team doesn't necessarily need something like `dotnet ef migrations list | grep "(Pending)"` because we always apply pending migrations in the deployment process. However, we have left the add...