Skip to content

Update dependency Npgsql.EntityFrameworkCore.PostgreSQL to v8.0.4 #214

Update dependency Npgsql.EntityFrameworkCore.PostgreSQL to v8.0.4

Update dependency Npgsql.EntityFrameworkCore.PostgreSQL to v8.0.4 #214

Workflow file for this run

name: CI
on:
workflow_call:
push:
branches:
- '**'
- '!main'
- '!develop'
jobs:
base_image_build:
name: Base image build
uses: ./.github/workflows/base-image-build.yml
if: ${{ github.event_name != 'push' || github.event.pull_request.head.sha != github.sha }}
secrets: inherit
final_image_build:
name: Final image build
uses: ./.github/workflows/final-image-build.yml
needs: [base_image_build]
if: ${{ github.event_name != 'push' || github.event.pull_request.head.sha != github.sha }}
secrets: inherit
unit_tests:
name: Unit Tests
uses: ./.github/workflows/unit-tests.yml
needs: [final_image_build, base_image_build]
if: ${{ github.event_name != 'push' || github.event.pull_request.head.sha != github.sha }}
secrets: inherit
integration_tests:
name: Integration Tests
uses: ./.github/workflows/integration-tests.yml
needs: [final_image_build, base_image_build]
if: ${{ github.event_name != 'push' || github.event.pull_request.head.sha != github.sha }}
secrets: inherit