FINERACT-2081: Fix Accrual Activity Reversal on Installment Due Date. #1010
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 Tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4.2.2 | |
- name: Build the image | |
run: ./gradlew --no-daemon --console=plain :fineract-provider:clean :fineract-provider:build :fineract-provider:jibDockerBuild -x test -x cucumber -x :integration-tests:test | |
- name: Start the Fineract stack | |
run: docker compose -f docker-compose-postgresql-test-activemq.yml up -d | |
- name: Check the stack | |
run: docker ps | |
- name: Check health Manager | |
run: curl -f -k --retry 60 --retry-all-errors --connect-timeout 30 --retry-delay 30 https://localhost:8443/fineract-provider/actuator/health | |
- name: Execute tests | |
env: | |
BASE_URL: https://localhost:8443 | |
TEST_USERNAME: mifos | |
TEST_PASSWORD: password | |
TEST_STRONG_PASSWORD: A1b2c3d4e5f$ | |
TEST_TENANT_ID: default | |
INITIALIZATION_ENABLED: true | |
EVENT_VERIFICATION_ENABLED: true | |
ACTIVEMQ_BROKER_URL: tcp://localhost:61616 | |
ACTIVEMQ_TOPIC_NAME: events | |
run: ./gradlew --no-daemon --console=plain -x test -x :integration-tests:test fineract-e2e-tests-runner:cucumber --tags 'not @Skip' allureReport |