PHPUnit #61
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: PHPUnit | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 4.x | |
- tv4g8-issue1950-improveTripalDocker | |
# Allows us to schedule when this workflow is run. | |
# This ensures we pick up any new changes in Drupal. | |
schedule: | |
# Run at 6am every night. | |
- cron: '0 6 * * *' | |
jobs: | |
running-tests: | |
name: "Drupal 10.3: PHP 8.3" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run Automated testing | |
uses: tripal/[email protected] | |
with: | |
directory-name: 'tripal' | |
modules: 'tripal tripal_biodb tripal_chado' | |
php-version: '8.3' | |
pgsql-version: '16' | |
drupal-version: '10.3.x-dev' | |
build-image: true |