[OPS-10828] Add tests #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |