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.
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
name: 'Test ${{ matrix.deps }} on PHP ${{ matrix.php }}'
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php: ['7.1.3', '7.2', '7.3', '7.4', '8.0']
|
|
include:
|
|
- php: '7.4'
|
|
deps: lowest
|
|
deprecations: max[self]=0
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '${{ matrix.php }}'
|
|
coverage: none
|
|
|
|
- name: Composer install
|
|
uses: ramsey/composer-install@v1
|
|
with:
|
|
dependency-versions: '${{ matrix.deps }}'
|
|
|
|
- name: Install PHPUnit
|
|
run: vendor/bin/simple-phpunit install
|
|
|
|
- name: Run tests
|
|
run: vendor/bin/simple-phpunit
|
|
env:
|
|
SYMFONY_DEPRECATIONS_HELPER: '${{ matrix.deprecations }}'
|
|
|
|
cs:
|
|
name: 'Code Style'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: PHP-CS-Fixer
|
|
uses: docker://oskarstark/php-cs-fixer-ga:2.18.5
|
|
with:
|
|
args: --diff --dry-run
|