Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
43 lines
859 B
YAML
43 lines
859 B
YAML
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
|
|
|
name: "Code coverage"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "development"
|
|
- "coverage"
|
|
|
|
jobs:
|
|
|
|
coverage:
|
|
|
|
name: "Code coverage"
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
matrix:
|
|
php-version:
|
|
- "7.4"
|
|
|
|
operating-system: [ubuntu-latest]
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v4"
|
|
|
|
- name: "Install PHP"
|
|
uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
coverage: "xdebug"
|
|
php-version: "${{ matrix.php-version }}"
|
|
extensions: "mbstring, gd, bcmath, bz2"
|
|
tools: composer:v2
|
|
|
|
- name: "Install dependencies"
|
|
run: "composer install --no-interaction --no-progress"
|
|
|
|
- name: "Code coverage"
|
|
run: composer coverage
|