Skip to content

Commit 141a391

Browse files
authored
Merge pull request #44 from Roave/renovate/configure
Configure Renovate
2 parents ba33201 + 92eeedb commit 141a391

File tree

4 files changed

+42
-123
lines changed

4 files changed

+42
-123
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://github.com/laminas/laminas-continuous-integration-action
2+
# Generates a job matrix based on current dependencies and supported version
3+
# ranges, then runs all those jobs
4+
name: "Continuous Integration"
5+
6+
on:
7+
pull_request:
8+
push:
9+
10+
jobs:
11+
matrix:
12+
name: Generate job matrix
13+
runs-on: ubuntu-latest
14+
outputs:
15+
matrix: ${{ steps.matrix.outputs.matrix }}
16+
steps:
17+
- name: Gather CI configuration
18+
id: matrix
19+
uses: laminas/[email protected]
20+
21+
qa:
22+
name: QA Checks
23+
needs: [ matrix ]
24+
runs-on: ${{ matrix.operatingSystem }}
25+
strategy:
26+
fail-fast: false
27+
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
28+
steps:
29+
- name: ${{ matrix.name }}
30+
uses: laminas/[email protected]
31+
env:
32+
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
33+
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
34+
"STRYKER_DASHBOARD_API_KEY": ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
35+
with:
36+
job: ${{ matrix.job }}

.github/workflows/mutation-tests.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/workflows/phpunit.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"local>Ocramius/.github:renovate-config"
5+
]
6+
}

0 commit comments

Comments
 (0)