-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (78 loc) · 3.04 KB
/
test.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Test
on: [pull_request]
env:
MYSQL_USER: root
MYSQL_PASSWORD: root
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: root
SIMPLETEST_DB: "mysql://root:root@localhost:3306/drupal"
SIMPLETEST_BASE_URL: "http://127.0.0.1:8080"
jobs:
testing:
name: Drupal ${{ matrix.drupal-core }} - PHP ${{ matrix.php-versions }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
drupal-core: ['10.3.x']
php-versions: ['8.3']
steps:
- name: Checkout Drupal core
uses: actions/checkout@v4
with:
repository: drupal/drupal
ref: ${{ matrix.drupal-core }}
- name: Checkout module
uses: actions/checkout@v4
with:
path: modules/custom/ocha_uimc
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Get composer cache directory
id: composercache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Remove platform PHP config
run: composer config --unset platform.php
- name: Install Drupal core and module dependencies
run: |
composer config repositories.module '{"type": "path", "url": "modules/custom/ocha_uimc", "options": {"symlink": false}}'
composer require unocha/ocha_uimc:@dev --no-interaction --no-progress --prefer-dist --optimize-autoloader
- name: Define DRUPAL_ROOT env variable
run: |
echo "DRUPAL_ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Install drush
run: composer require "drush/drush ^12.0"
- name: Start MySql service
run: |
sudo /etc/init.d/mysql start
- name: Install Drupal
run: |
php -d sendmail_path=$(which true); vendor/bin/drush --yes -v \
site-install minimal --db-url="$SIMPLETEST_DB"
vendor/bin/drush en ocha_uimc -y
- name: Run module tests
run: |
XDEBUG_MODE=coverage vendor/bin/phpunit --bootstrap core/tests/bootstrap.php \
--coverage-clover ./clover.xml \
-c modules/custom/ocha_uimc/phpunit.xml modules/custom/ocha_uimc
- name: Monitor coverage
id: coveralls
uses: slavcodev/coverage-monitor-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
status_context: Monitor coverage for Drupal ${{ matrix.drupal-core }} - PHP ${{ matrix.php-versions }}
comment_context: Monitor coverage for Drupal ${{ matrix.drupal-core }} - PHP ${{ matrix.php-versions }}
coverage_path: "./clover.xml"
threshold_alert: 0
threshold_warning: 50
threshold_metric: "lines"
comment_footer: false