MOSIP-25073: Security Vulnerability and Reliability bugs fixes and Test Coverage for admin services #609
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PostgreSQL Test | |
on: | |
release: | |
types: [published] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
workflow_dispatch: | |
inputs: | |
message: | |
description: 'Message for manually triggering' | |
required: false | |
default: 'Triggered for Updates' | |
type: string | |
push: | |
branches: | |
- '!release-branch' | |
- release* | |
- master | |
- 1.* | |
- develop* | |
- MOSIP* | |
paths: | |
- 'db_scripts/**' | |
jobs: | |
build-db-test: | |
strategy: | |
matrix: | |
include: | |
- DB_LOCATION: 'db_scripts/mosip_hotlist' | |
DB_NAME: 'mosip_hotlist' | |
- DB_LOCATION: 'db_scripts/mosip_master' | |
DB_NAME: 'mosip_master' | |
fail-fast: false | |
name: ${{ matrix.DB_NAME }} | |
uses: mosip/kattu/.github/workflows/db-test.yml@master-java21 | |
with: | |
DB_LOCATION: ${{ matrix.DB_LOCATION}} |