Skip to content

toDbQuery()?

toDbQuery()? #416

Workflow file for this run

name: build
on:
push:
pull_request:
schedule:
- cron: '0 10 * * 1'
jobs:
run:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
fail-fast: false
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer:v2
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run phpcs
run: composer phpcs
- name: Run phpstan
run: composer phpstan
- name: Run tests
#run: composer tests # manually with `-j 1` and retry is used because of random async connection errors
uses: nick-invision/retry@v2
with:
timeout_seconds: 120
retry_wait_seconds: 5
max_attempts: 15
retry_on: error
command: tests/run-tests tests -j 1
- if: failure()
uses: actions/upload-artifact@v4
with:
name: output
path: tests/**/output
- name: Run benchmarks
run: composer benchmarks