Fixes core module files #1053
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
# Run some PHPUnit tests | |
name: Test Coverage | |
on: [push, workflow_dispatch] | |
## UPDATES | |
## Update the version numbers in the job name and the action parameters | |
jobs: | |
run-coverage: | |
name: "Drupal 10.4.x-dev - PHP 8.3 - PostgreSQL 16" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run Automated testing + report coverage | |
uses: tripal/[email protected] | |
with: | |
directory-name: 'TripalCultivate-Phenotypes' | |
modules: 'trpcultivate_phenotypes trpcultivate_phenocollect trpcultivate_phenoshare' | |
build-image: TRUE | |
dockerfile: 'Dockerfile' | |
php-version: 8.3 | |
pgsql-version: 16 | |
drupal-version: 10.4.x-dev | |
codeclimate-reporter-id: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }} |