chore(deps): update dependency phpstan/phpstan-phpunit to v1.4.1 (#196) #488
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Infection | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
env: | |
LIBRDKAFKA_VERSION: v1.7.0 | |
jobs: | |
Infection: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Build the docker-compose stack | |
run: docker compose -f tests/docker-compose.yaml up -d | |
- name: Install librdkafka | |
run: | | |
chmod +x .ci/install_rdkafka.sh | |
.ci/install_rdkafka.sh | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "8.2" | |
coverage: "pcov" | |
extensions: "rdkafka" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v1" | |
- name: Run Infection | |
run: vendor/bin/infection --threads=$(nproc) | |
env: | |
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} |