mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
85 lines
2.4 KiB
YAML
85 lines
2.4 KiB
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- operating-system: 'ubuntu-latest'
|
|
php-version: '7.1'
|
|
|
|
- operating-system: 'ubuntu-latest'
|
|
php-version: '7.2'
|
|
|
|
- operating-system: 'ubuntu-latest'
|
|
php-version: '7.3'
|
|
|
|
- operating-system: 'ubuntu-latest'
|
|
php-version: '7.4'
|
|
|
|
- operating-system: 'ubuntu-latest'
|
|
php-version: '8.0'
|
|
|
|
name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }}
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
steps:
|
|
- name: Set git to use LF
|
|
run: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.eol lf
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install libuv
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install libuv1-dev
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
extensions: eio-beta, uv-amphp/ext-uv@master
|
|
|
|
- name: Get Composer cache directory
|
|
id: composer-cache
|
|
run: echo "::set-output name=dir::$(composer config cache-dir)"
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}-${{ matrix.composer-flags }}
|
|
restore-keys: |
|
|
composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}-
|
|
composer-${{ runner.os }}-${{ matrix.php-version }}-
|
|
composer-${{ runner.os }}-
|
|
composer-
|
|
|
|
- name: Install dependencies
|
|
uses: nick-invision/retry@v2
|
|
with:
|
|
timeout_minutes: 5
|
|
max_attempts: 5
|
|
retry_wait_seconds: 30
|
|
command: |
|
|
composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }}
|
|
composer info -D
|
|
|
|
- name: Run tests
|
|
env:
|
|
PHP_CS_FIXER_IGNORE_ENV: 1
|
|
run: vendor/bin/phpunit ${{ matrix.phpunit-flags }}
|
|
|
|
- name: Run style fixer
|
|
env:
|
|
PHP_CS_FIXER_IGNORE_ENV: 1
|
|
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix
|