mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
37 lines
1.5 KiB
YAML
37 lines
1.5 KiB
YAML
name: CI
|
|
on: [push]
|
|
jobs:
|
|
Linter:
|
|
runs-on: ubuntu-latest
|
|
container: php:8.2
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install composer
|
|
run: apt-get update -yq && apt-get install git wget procps unzip -y && pecl install -o -f redis && rm -rf /tmp/pear && docker-php-ext-enable redis && wget https://getcomposer.org/composer.phar && php composer.phar install --dev
|
|
- name: Validate composer.json and composer.lock
|
|
run: php composer.phar validate --strict
|
|
- name: Install dependencies
|
|
run: php composer.phar install --dev --prefer-dist --no-progress
|
|
- name: Run PHPCS Linter
|
|
run: php -d memory_limit=256M vendor/bin/phpcs -s --standard=ruleset.xml
|
|
PHPTest:
|
|
runs-on: ubuntu-latest
|
|
container: php:${{ matrix.php_version }}
|
|
strategy:
|
|
matrix:
|
|
php_version: [8.1, 8.2]
|
|
services:
|
|
redis:
|
|
image: redis:7.0
|
|
options: >-
|
|
--health-cmd "redis-cli ping"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install composer
|
|
run: apt-get update -yq && apt-get install git wget procps unzip -y && pecl install -o -f redis && rm -rf /tmp/pear && docker-php-ext-enable redis && wget https://getcomposer.org/composer.phar && php composer.phar install --dev
|
|
- name: Run PHP ${{ matrix.php_version }}} Unit Tests
|
|
run: php vendor/bin/phpunit --verbose --configuration phpunit.xml
|