Test suite #784
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: Test suite | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
static-analyse: | |
name: Code style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- uses: actions/cache@v2 | |
id: cache-composer | |
with: | |
path: ~/.composer/cache | |
key: composer-php-8.3-${{ github.sha }} | |
restore-keys: composer-php-8.3- | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-progress --no-suggest | |
- name: Run PHP CS Fixer | |
run: make test.phpcs | |
unit-test: | |
name: Unit tests | |
strategy: | |
matrix: | |
php: [ 8.2, 8.3 ] | |
os: [ ubuntu-latest ] | |
include: | |
- os: [ ubuntu-latest ] | |
php: 8.1 | |
composer-flag: "'--prefer-lowest'" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- uses: actions/cache@v2 | |
id: cache-composer | |
with: | |
path: ~/.composer/cache | |
key: composer-php-${{ matrix.php }}-${{ github.sha }} | |
restore-keys: composer-php-${{ matrix.php }}- | |
- name: Valid composer.json | |
run: make test.composer | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-progress --no-plugins ${{ matrix.composer-flag }} | |
- name: Run PHPUnit tests | |
run: make test.phpunit | |
functional-test: | |
name: Functionnal tests | |
strategy: | |
matrix: | |
php: [ 8.2, 8.3 ] | |
os: [ ubuntu-latest ] | |
include: | |
- os: [ ubuntu-latest ] | |
php: 8.1 | |
composer-flag: "'--prefer-lowest'" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: sqlite3 | |
- uses: actions/cache@v2 | |
id: cache-composer | |
with: | |
path: ~/.composer/cache | |
key: composer-php-${{ matrix.php }}-${{ github.sha }} | |
restore-keys: composer-php-${{ matrix.php }}- | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-progress --no-suggest --no-plugins ${{ matrix.composer-flag }} | |
- name: Run Behat tests | |
run: make test.behat |