Skip to content

Allow to adjust NpgsqlDataSource #49

Allow to adjust NpgsqlDataSource

Allow to adjust NpgsqlDataSource #49

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: run IntegreSQL docker
run: cd scripts; docker compose up -d
- name: Test
run: dotnet test --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx"
- name: Publish Unit Test Results
uses: dorny/test-reporter@v1
if: always()
with:
name: XUnit
path: "**/test-results.trx"
reporter: dotnet-trx