File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/Wiremock.OpenAPIValidator Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11name : Example Workflow
22
33on :
4+ schedule :
5+ - cron : " 0 0 * * MON"
46 workflow_dispatch :
57
68jobs :
79 build :
810 runs-on : ubuntu-latest
11+ defaults :
12+ run :
13+ working-directory : examples
914
1015 steps :
1116 - uses : actions/checkout@v3
2025 run : dotnet tool install --global Wiremock.OpenAPIValidator
2126 - name : Run Validator
2227 run : |
23- wiremockopenapi -o "./examples/ openapi/openapi.yml " -w "./example /wiremock/mappings"
28+ wiremockopenapi -o "./openapi/openapi.yaml " -w "./wiremock/mappings"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ static async Task<int> Main(string[] args)
3939
4040 if ( string . IsNullOrEmpty ( wireMockPath ) || string . IsNullOrEmpty ( openApiPath ) )
4141 {
42- return 0 ;
42+ return 1 ;
4343 }
4444
4545
You can’t perform that action at this time.
0 commit comments