chore(deps): bump gradle/wrapper-validation-action from 859c33240bd026ce8d5f711f5adcc65c2f8eafc1 to 63d15e7a1e697b1de6f3ba0507106f89100c8518 #240
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 - MariaDB | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
services: | |
mariad: | |
image: mariadb:10.8 | |
ports: | |
- 3306:3306 | |
env: | |
MARIADB_ROOT_PASSWORD: mysql | |
options: --health-cmd="mysqladmin ping" --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@63d15e7a1e697b1de6f3ba0507106f89100c8518 | |
- name: Verify MariaDB connection | |
run: | | |
while ! mysqladmin ping -h"127.0.0.1" -P3306 ; do | |
sleep 1 | |
done | |
- name: Initialise databases | |
run: | | |
./gradlew --no-daemon -q createDB -PdbName=fineract_tenants | |
./gradlew --no-daemon -q createDB -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 | |
- name: 2FA Build & Test | |
run: ./gradlew --no-daemon -q --console=plain :twofactor-tests:test --fail-fast | |
- name: OAuth2 Build & Test | |
run: ./gradlew --no-daemon -q --console=plain :oauth2-tests:test --fail-fast |