diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index f789a91..3d31425 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -5,6 +5,7 @@ on: push jobs: test: runs-on: ubuntu-latest + # container: node # Service containers to run with `runner-job` services: @@ -27,11 +28,13 @@ jobs: - 5442:5432 steps: - - name: Setup dotnet - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x - - name: Check out repository code - uses: actions/checkout@v4 - - name: Run integration tests - run: dotnet test DD.Persistence.IntegrationTests + - name: Build and test + run: docker run --rm mcr.microsoft.com/dotnet/samples + # - name: Setup dotnet + # uses: actions/setup-dotnet@v4 + # with: + # dotnet-version: 8.0.x + # - name: Check out repository code + # uses: actions/checkout@v4 + # - name: Run integration tests + # run: dotnet test DD.Persistence.IntegrationTests diff --git a/DD.Persistence.Database.Postgres/PersistencePostgresContext.cs b/DD.Persistence.Database.Postgres/PersistencePostgresContext.cs index 65a9066..6cd8955 100644 --- a/DD.Persistence.Database.Postgres/PersistencePostgresContext.cs +++ b/DD.Persistence.Database.Postgres/PersistencePostgresContext.cs @@ -14,6 +14,5 @@ public partial class PersistencePostgresContext : PersistenceDbContext protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); - } }