-
-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (61 loc) · 1.5 KB
/
integration-test.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Integration test
on:
pull_request:
jobs:
build:
name: Run example
strategy:
matrix:
os:
- ubuntu-latest
#- macos-latest
#- macos-latest-large
#- windows-latest
runs-on: ${{ matrix.os }}
steps:
-
name: Checkout
uses: actions/checkout@v4
- name: Run Simple Example
uses: ./
with:
entrypoint: example/simple/entrypoint.sh
- name: Run Stream Example
uses: ./
with:
entrypoint: example/stream/entrypoint.sh
- name: Run WKT Example
uses: ./
with:
entrypoint: example/well_known_types/entrypoint.sh
- name: Run Multi Package Example
uses: ./
with:
entrypoint: example/multi-package/entrypoint.sh
- name: Run Multi Files Example
uses: ./
with:
entrypoint: example/multi-files/entrypoint.sh
- name: Run one-of Example
uses: ./
with:
entrypoint: example/one-of/entrypoint.sh
- name: Run stub subfolders example
uses: ./
with:
entrypoint: example/stub-subfolders/entrypoint.sh
- name: Run microservice example
uses: ./
with:
entrypoint: example/ms/entrypoint.sh
- name: Run microservice example (custom ports)
uses: ./
env:
GRPC_PORT: 5000
HTTP_PORT: 6000
with:
entrypoint: example/ms/entrypoint.sh
- name: Run strict mode example
uses: ./
with:
entrypoint: example/strictmode/entrypoint.sh