Skip to content

Package Dependencies: Bump Npgsql.EntityFrameworkCore.PostgreSQL, Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.Relational #4

Package Dependencies: Bump Npgsql.EntityFrameworkCore.PostgreSQL, Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.Relational

Package Dependencies: Bump Npgsql.EntityFrameworkCore.PostgreSQL, Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.Relational #4

name: Integration Tests
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: QueryKit/tests/QueryKit.IntegrationTests
run: dotnet test --no-restore --verbosity minimal