-
Notifications
You must be signed in to change notification settings - Fork 10
102 lines (88 loc) · 2.84 KB
/
verify-clients.yml
File metadata and controls
102 lines (88 loc) · 2.84 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: verify clients
on:
pull_request:
branches:
- master
- develop
- stable
jobs:
verify-python:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v4
with:
path: "DocumentReader-web-openapi"
- name: Checkout Python Client Repo
uses: actions/checkout@v4
with:
repository: "regulaforensics/DocumentReader-web-python-client"
path: "python-client"
- name: Verify update Python client
working-directory: python-client
env:
API_BASE_PATH: ${{ github.base_ref == 'develop' && 'https://nightly-api.regulaforensics.com' || 'https://rc-api.regulaforensics.com' }}
run: |
./update-models.sh strict
./setup.sh
verify-csharp:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v4
with:
path: "DocumentReader-web-openapi"
- name: Checkout CSharp Client Repo
uses: actions/checkout@v4
with:
repository: "regulaforensics/DocumentReader-web-csharp-client"
path: "csharp-client"
- name: Verify update CSharp client
working-directory: csharp-client
env:
API_BASE_PATH: ${{ github.base_ref == 'develop' && 'https://nightly-api.regulaforensics.com' || 'https://rc-api.regulaforensics.com' }}
run: |
./update-models.sh strict
./setup.sh
verify-js:
runs-on: ubuntu-latest
steps:
- name: Checkout Specification Repo
uses: actions/checkout@v4
with:
path: "DocumentReader-web-openapi"
- name: Checkout JS Client Repo
uses: actions/checkout@v4
with:
repository: "regulaforensics/DocumentReader-web-js-client"
path: "js-client"
- name: Verify update JS client
working-directory: js-client
run: |
./update-models.sh
./setup.sh
verify-java:
runs-on: ubuntu-latest
steps:
- name: Specify Java Version
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: 11
java-package: jdk
- name: Checkout Specification Repo
uses: actions/checkout@v4
with:
path: "DocumentReader-web-openapi"
- name: Checkout Java Client Repo
uses: actions/checkout@v4
with:
repository: "regulaforensics/DocumentReader-web-java-client"
path: "java-client"
- name: Verify update Java client
working-directory: java-client
env:
API_BASE_PATH: ${{ github.base_ref == 'develop' && 'https://nightly-api.regulaforensics.com' || 'https://rc-api.regulaforensics.com' }}
run: |
./update-models.sh strict
./gradlew clean :example:run