File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 workflow_dispatch :
99
1010jobs :
11- build :
12- runs-on : ubuntu-latest
13- continue-on-error : false
14- strategy :
15- fail-fast : false
16- matrix :
17- php-versions : ["8.3", "8.4"]
18- drupal-version : ["10.6", "11.3"]
19-
20- name : PHP ${{ matrix.php-versions }} | Drupal ${{ matrix.drupal-version }}
21-
22- steps :
23- - name : Checkout code
24- uses : actions/checkout@v5
25-
26- - name : Create docker network
27- run : docker network create ci-default
28-
29- - name : PHPUnit tests
30- run : |
31- docker run \
32- --rm \
33- --name drupal \
34- --hostname drupal \
35- --volume $(pwd):/var/www/drupal/web/modules/contrib/$ENABLE_MODULES:ro \
36- --env ENABLE_MODULES \
37- --network ci-default \
38- ghcr.io/islandora/ci:${{ matrix.drupal-version }}-php${{ matrix.php-versions }}
39- env :
40- ENABLE_MODULES : islandora_iiif_hocr_extend
11+ islandora-module-ci :
12+ uses : digitalutsc/reusable_workflows/.github/workflows/islandora-module-ci.yml@main
13+ with :
14+ module_name : islandora_iiif_hocr_extend
15+ install_chromedriver : false
Original file line number Diff line number Diff line change 22 "name" : " islandora_lite/islandora_iiif_hocr_extend" ,
33 "type" : " drupal-module" ,
44 "description" : " Extends Islandora IIIF HOCR module to extract and index text version of hocr xml data." ,
5- "keywords" : [" Drupal" ]
5+ "keywords" : [" Drupal" ],
6+ "require" : {
7+ "drupal/core" : " ^10 || ^11"
8+ }
69}
You can’t perform that action at this time.
0 commit comments