-
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (34 loc) · 941 Bytes
/
infection.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 }}