Skip to content

Support TLS protocol #51

Support TLS protocol

Support TLS protocol #51

Workflow file for this run

name: Package CI
on:
pull_request:
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 7.4, 8.0, 8.1, 8.2 ]
redis-version: [4, 5, 6]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: redis, igbinary
env:
REDIS_CONFIGURE_OPTS: --enable-redis --enable-redis-igbinary
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- run: composer update --no-interaction --no-suggest --no-progress --prefer-dist
- if: matrix.php == '8.0'
run: make phpcs
- if: matrix.php == '8.0'
run: make lint
- if: matrix.php == '8.0'
run: make phpstan
- run: make run-tests
- if: matrix.php == '8.0'
run: make coveralls || true