-
-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (39 loc) · 1014 Bytes
/
regression-tests.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
name: Regression Tests
on:
workflow_dispatch:
push:
paths-ignore:
- "**/*"
- "!.github/workflows/regression-tests.yml"
branches:
- "main"
jobs:
template:
strategy:
fail-fast: false
matrix:
format: [json, yaml]
version: [v2.0, v3.0]
os: [macos-latest, windows-latest, ubuntu-latest]
openapi: [
"api-with-examples",
"callback-example",
"link-example",
"uber",
"uspto",
"petstore",
"petstore-expanded",
"petstore-minimal",
"petstore-simple",
"petstore-with-external-docs",
"ingram-micro",
"hubspot-events",
"hubspot-webhooks"
]
uses: ./.github/workflows/template.yml
with:
format: ${{ matrix.format }}
version: ${{ matrix.version }}
openapi: ${{ matrix.openapi }}
os: ${{ matrix.os }}
command: 'dotnet run --project ../src/CurlGenerator/CurlGenerator.csproj'