Skip to content

ci: test on php 8.3 (#205) #1193

ci: test on php 8.3 (#205)

ci: test on php 8.3 (#205) #1193

Workflow file for this run

name: Infection
on:
pull_request:
push:
branches:
- "master"
workflow_dispatch:
jobs:
Infection:
runs-on: ubuntu-latest
env:
CLICKHOUSE_VERSION: "22.10"
steps:
- uses: actions/checkout@v4
- name: Build the docker-compose stack
run: docker-compose -f tests/docker-compose.yaml up -d
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
coverage: pcov
ini-values: variables_order=EGPCS
extensions: json
- name: Install Dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run Infection
run: |
export $ENV
vendor/bin/roave-infection-static-analysis-plugin --threads=$(nproc)
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}