We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f2ea3f commit b7e8966Copy full SHA for b7e8966
.github/workflows/example.yml
@@ -6,6 +6,9 @@ on:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
+ defaults:
10
+ run:
11
+ working-directory: examples
12
13
steps:
14
- uses: actions/checkout@v3
@@ -20,4 +23,4 @@ jobs:
20
23
run: dotnet tool install --global Wiremock.OpenAPIValidator
21
24
- name: Run Validator
22
25
run: |
- wiremockopenapi -o "/examples/openapi/openapi.yml" -w "/example/wiremock/mappings"
26
+ wiremockopenapi -o "./openapi/openapi.yml" -w "./wiremock/mappings"
src/Wiremock.OpenAPIValidator/Program.cs
@@ -39,7 +39,7 @@ static async Task<int> Main(string[] args)
39
40
if (string.IsNullOrEmpty(wireMockPath) || string.IsNullOrEmpty(openApiPath))
41
{
42
- return 0;
+ return 1;
43
}
44
45
0 commit comments