-
Notifications
You must be signed in to change notification settings - Fork 85
53 lines (51 loc) · 1.37 KB
/
mutation-testing.yml
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
44
45
46
47
48
49
50
51
52
53
name: Mutation testing
on:
workflow_dispatch:
push:
branches: [ main ]
permissions:
actions: write
checks: write
contents: read
deployments: read
issues: write
discussions: write
packages: read
pages: write
pull-requests: write
security-events: write
statuses: write
jobs:
vonage:
name: Vonage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Stryker
run: dotnet tool install -g dotnet-stryker
- name: Run mutation testing
run: |
cd Vonage
dotnet stryker --reporter "dashboard" --dashboard-api-key "${{ secrets.STRYKER_API_KEY }}"
vonage-common:
name: Vonage.Common
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Stryker
run: dotnet tool install -g dotnet-stryker
- name: Run mutation testing
run: |
cd Vonage.Common
dotnet stryker --reporter "dashboard" --dashboard-api-key "${{ secrets.STRYKER_API_KEY }}"
vonage-server:
name: Vonage.Server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Stryker
run: dotnet tool install -g dotnet-stryker
- name: Run mutation testing
run: |
cd Vonage.Server
dotnet stryker --reporter "dashboard" --dashboard-api-key "${{ secrets.STRYKER_API_KEY }}"