Skip to content

chore: Use real Redis connection for tests (#30) #37

chore: Use real Redis connection for tests (#30)

chore: Use real Redis connection for tests (#30) #37

Workflow file for this run

name: Run CI
on:
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
ci-build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
strategy:
fail-fast: false
matrix:
include:
# 8.1 configurations
- php-version: 8.1
use-lowest-dependencies: true
# 8.2 configurations
- php-version: 8.2
use-lowest-dependencies: false
# 8.3 configurations
- php-version: 8.3
use-lowest-dependencies: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this.
- uses: ./.github/actions/ci
with:
php-version: ${{ matrix.php-version }}
use-lowest-dependencies: ${{ matrix.use-lowest-dependencies }}
token: ${{ secrets.GITHUB_TOKEN }}