BTHAMM-31: Prevent resetting contribution total amount to zero #485
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: Tests | |
on: pull_request | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
container: compucorp/civicrm-buildkit:1.3.1-php8.0 | |
env: | |
CIVICRM_EXTENSIONS_DIR: site/web/sites/all/modules/civicrm/tools/extensions | |
services: | |
mysql: | |
image: mariadb:10.3.10 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Config mysql database as per CiviCRM requirement | |
run: echo "SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));" | mysql -u root --password=root --host=mysql | |
- name: Config amp | |
run : amp config:set --mysql_dsn=mysql://root:root@mysql:3306 | |
- name: Composer version downgrade 2.2.5 | |
run : composer self-update 2.2.5 | |
- name: Build Drupal site | |
run: civibuild create drupal-clean --civi-ver 5.51.3 --cms-ver 7.94 --web-root $GITHUB_WORKSPACE/site | |
- uses: compucorp/apply-patch@1.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
repo: compucorp/civicrm-core | |
version: 5.51.3 | |
path: site/web/sites/all/modules/civicrm | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{ env.CIVICRM_EXTENSIONS_DIR }}/io.compuco.financeextras | |
- name: Installing Finance Extras | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }} | |
run: cv en financeextras | |
- name: Run phpunit tests | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }}/io.compuco.financeextras | |
run: phpunit5 |