-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (79 loc) · 2.92 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: Module Tests
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: Install Drupal core dependencies
run: |
composer --no-interaction --no-progress --prefer-dist --optimize-autoloader install
- name: Install module dependencies
run: |
cd modules/custom/ocha_uimc
composer --no-interaction --no-progress --prefer-dist --optimize-autoloader install
cd ../../..
- name: Define DRUPAL_ROOT env variable
run: |
echo "DRUPAL_ROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- 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: |
vendor/bin/phpunit --bootstrap core/tests/bootstrap.php \
--configuration modules/custom/ocha_uimc/phpunit.xml \
--coverage-clover ./clover.xml \
modules/custom/ocha_uimc
- name: Monitor coverage
id: coveralls
uses: slavcodev/coverage-monitor-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
status_context: Coverage (Drupal ${{ matrix.drupal-core }} - PHP ${{ matrix.php-versions }})
comment_context: Coverage (Drupal ${{ matrix.drupal-core }} - PHP ${{ matrix.php-versions }})
coverage_path: "./clover.xml"
threshold_alert: 0
threshold_warning: 50
threshold_metric: "lines"
comment_footer: false