2019-10-10 19:17:17 +07:00
|
|
|
# GitHub Action for Symfony
|
|
|
|
name: Testing Symfony
|
2019-10-08 19:42:54 +07:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2019-10-10 19:17:17 +07:00
|
|
|
symfony:
|
2019-10-08 19:42:54 +07:00
|
|
|
name: Symfony (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-01-21 09:55:14 +07:00
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-15 18:19:10 +07:00
|
|
|
php-versions: ['7.4', '8.0', '8.1']
|
2019-10-08 19:42:54 +07:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-01-02 00:06:25 +07:00
|
|
|
uses: actions/checkout@v2
|
2021-12-15 18:19:10 +07:00
|
|
|
|
|
|
|
# Docs: https://github.com/shivammathur/setup-php
|
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
2019-10-08 19:42:54 +07:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2021-07-17 13:19:03 +07:00
|
|
|
tools: phpunit-bridge
|
2019-12-28 03:48:01 +07:00
|
|
|
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite
|
2021-12-15 18:19:10 +07:00
|
|
|
coverage: xdebug
|
|
|
|
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Get composer cache directory
|
2020-11-12 19:56:26 +07:00
|
|
|
id: composer-cache
|
2019-11-27 07:30:34 +07:00
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Cache composer dependencies
|
2020-05-30 12:57:44 +07:00
|
|
|
uses: actions/cache@v2
|
2019-11-27 07:30:34 +07:00
|
|
|
with:
|
2020-11-12 19:56:26 +07:00
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2019-12-28 01:53:51 +07:00
|
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
2019-11-27 07:30:34 +07:00
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Install Composer dependencies
|
2021-07-17 13:19:03 +07:00
|
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2021-07-17 13:19:03 +07:00
|
|
|
- name: Install PHPUnit
|
|
|
|
run: simple-phpunit install
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2021-07-17 13:19:03 +07:00
|
|
|
- name: Run tests
|
|
|
|
run: simple-phpunit --coverage-text
|