Skip to content

Commit 61222b9

Browse files
committed
Merge test suite into single workflow file & use reusable workflow
1 parent ba4a27d commit 61222b9

5 files changed

Lines changed: 26 additions & 204 deletions

File tree

.github/workflows/dependabot-auto-merge.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ on:
55
types:
66
- completed
77
workflows:
8-
- 'Tests'
9-
- 'Mutation Tests'
10-
- 'Static Analyze'
8+
- 'Test Suite'
119

1210
jobs:
1311
merge-me:

.github/workflows/mutation.yml

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

.github/workflows/static-analyze.yml

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

.github/workflows/test-suite.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Test Suite"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- "1.x"
8+
schedule:
9+
- cron: '0 8 * * *'
10+
11+
jobs:
12+
tests:
13+
name: "Tests"
14+
uses: aeon-php/.github/workflows/composer-script-test.yaml@main
15+
16+
static-analyze:
17+
name: "Static Analyze"
18+
uses: aeon-php/.github/workflows/composer-script-static-analyze.yaml@main
19+
20+
mutation-tests:
21+
name: "Mutation Tests"
22+
uses: aeon-php/.github/workflows/composer-script-mutation.yaml@main
23+
secrets:
24+
infection_badge_api_key: ${{ secrets.INFECTION_BADGE_API_KEY }}
25+
stryker_dashboard_api_key: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

.github/workflows/tests.yml

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

0 commit comments

Comments
 (0)