chore(deps): bump gradle/wrapper-validation-action from 859c33240bd026ce8d5f711f5adcc65c2f8eafc1 to 5188e9b5527a0a094cee21e2fe9a8ca44b4629af #281
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: Fineract Gradle build - PostgreSQL | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
services: | |
postgresql: | |
image: postgres:13.4 | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: root | |
POSTGRES_PASSWORD: postgres | |
options: --health-cmd="pg_isready -q -d postgres -U root" --health-interval=5s --health-timeout=2s --health-retries=3 | |
mock-oauth2-server: | |
image: ghcr.io/navikt/mock-oauth2-server:0.4.0 | |
ports: | |
- 9000:9000 | |
env: | |
SERVER_PORT: 9000 | |
JSON_CONFIG: '{ "interactiveLogin": true, "httpServer": "NettyWrapper", "tokenCallbacks": [ { "issuerId": "auth/realms/fineract", "tokenExpiry": 120, "requestMappings": [{ "requestParam": "scope", "match": "fineract", "claims": { "sub": "mifos", "scope": [ "test" ] } } ] } ] }' | |
env: | |
TZ: Asia/Kolkata | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Congfigure vega-cli | |
run: npm i -g vega-cli --unsafe | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@5188e9b5527a0a094cee21e2fe9a8ca44b4629af | |
- name: Verify PostgreSQL connection | |
run: | | |
while ! pg_isready -d postgres -U root -h 127.0.0.1 -p 5432 ; do | |
sleep 1 | |
done | |
- name: Initialise databases | |
run: | | |
./gradlew --no-daemon -q createPGDB -PdbName=fineract_tenants | |
./gradlew --no-daemon -q createPGDB -PdbName=fineract_default | |
- name: Install additional software | |
run: | | |
sudo apt-get update | |
sudo apt-get install ghostscript graphviz -y | |
- name: Basic Auth Build & Test | |
run: ./gradlew --no-daemon -q --console=plain build test --fail-fast doc -x :twofactor-tests:test -x :oauth2-test:test -PdbType=postgresql | |
- name: 2FA Build & Test | |
run: ./gradlew --no-daemon -q --console=plain :twofactor-tests:test --fail-fast -PdbType=postgresql | |
- name: OAuth2 Build & Test | |
run: ./gradlew --no-daemon -q --console=plain :oauth2-tests:test --fail-fast -PdbType=postgresql |