-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
31 lines (26 loc) · 819 Bytes
/
action.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
name: "dotnet-stryker-action"
description: "GitHub Action for mutation testing with Stryker.NET via Docker"
author: "lyndychivs"
branding:
icon: "crosshair"
color: "red"
inputs:
configurationFile:
description: "The name of the Stryker.NET configuration file (must be in the root of the repository)."
required: true
default: "stryker-config.json"
dashboardApiKey:
description: "The API key for authentication with the Stryker dashboard."
required: false
default: ""
version:
description: "The version of the report. This should be filled with the branch name, git tag or git sha."
required: false
default: ""
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.configurationFile }}
- ${{ inputs.dashboardApiKey }}
- ${{ inputs.version }}