Skip to content

Commit

Permalink
Fix misnamed workflows directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
laceysanderson committed Dec 13, 2024
1 parent a7ef607 commit d15f492
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/ALL-PHPUnit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

name: PHPUnit Full Test Suite
on:
push:
# branches-ignore:
# - 4.x
# Allows us to manually trigger this workflow.
# This is great if there is a change made to Tripal core that we want to test our modules on ASAP.
workflow_dispatch:
# Allows us to schedule when this workflow is run.
# This ensures we pick up any new changes committed to Tripal Core.
schedule:
# Run at 2am every night.
- cron: '0 2 * * *'

env:
PKG_NAME: chado_search
MODULES: "chado_search example_ccsearch"

jobs:
run-tests:
name: "Drupal ${{ matrix.drupal-version }} - PHP ${{ matrix.php-version }} - PostgreSQL ${{ matrix.pgsql-version }}"
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
pgsql-version:
- "13"
- "16"
drupal-version:
- "10.3.x-dev"
- "10.4.x-dev"
- "10.5.x-dev"
- "11.0.x-dev"
- "11.1.x-dev"
exclude:
- php-version: "8.1"
drupal-version: "11.0.x-dev"
- php-version: "8.2"
drupal-version: "11.0.x-dev"
- php-version: "8.3"
pgsql-version: "13"
drupal-version: "11.0.x-dev"
- php-version: "8.1"
drupal-version: "11.1.x-dev"
- php-version: "8.2"
drupal-version: "11.1.x-dev"
- php-version: "8.3"
pgsql-version: "13"
drupal-version: "11.1.x-dev"

steps:
# Check out the repo
- name: Checkout Repository
uses: actions/checkout@v4
# Here we pull the development tripaldocker image for this combo in our matrix
- name: Run Automated testing
uses: tripal/[email protected]
with:
directory-name: $PKG_NAME
modules: $MODULES
build-image: TRUE
dockerfile: 'Dockerfile'
php-version: ${{ matrix.php-version }}
pgsql-version: ${{ matrix.pgsql-version }}
drupal-version: ${{ matrix.drupal-version }}

0 comments on commit d15f492

Please sign in to comment.