-
Notifications
You must be signed in to change notification settings - Fork 13
56 lines (51 loc) · 1.36 KB
/
ALL-PHPUnit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: PHPUnit
on:
push:
branches-ignore:
- 2.x
env:
PKG_NAME: tripal_blast
MODULES: "tripal_blast"
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
pgsql-version:
- "13"
- "16"
drupal-version:
- "10.0.x-dev"
- "10.1.x-dev"
- "10.2.x-dev"
exclude:
- php-version: "8.3"
pgsql-version: "13"
drupal-version: "10.0.x-dev"
- php-version: "8.3"
pgsql-version: "13"
drupal-version: "10.1.x-dev"
- php-version: "8.3"
pgsql-version: "16"
drupal-version: "10.0.x-dev"
- php-version: "8.3"
pgsql-version: "16"
drupal-version: "10.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
php-version: ${{ matrix.php-version }}
pgsql-version: ${{ matrix.pgsql-version }}
drupal-version: ${{ matrix.drupal-version }}