Skip to content

[ODS-6376] Update npgsql package #1596

[ODS-6376] Update npgsql package

[ODS-6376] Update npgsql package #1596

name: Lib EdFi.Security.DataAccess Pull request build and test
on:
pull_request:
branches: ['main-5x', 'b-v*-patch*','feature-*']
paths:
- Application/EdFi.Security.DataAccess/**/*
- tests/EdFi.Security.DataAccess.UnitTests/**/*
- Application/EdFi.Common/**/*
env:
INFORMATIONAL_VERSION: "5.4"
BUILD_INCREMENTER: "1"
CONFIGURATION: "Release"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
with:
dotnet-version: 3.1.x
- name: build
run: |
.\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -BuildIncrementer ${{env.BUILD_INCREMENTER}} -Solution "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.sln" -ProjectFile "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.csproj"
shell: pwsh
- name: Run Unit tests
run: |
.\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.sln" -ProjectFile "Application/EdFi.Security.DataAccess/EdFi.Security.DataAccess.csproj"
shell: pwsh