-
Notifications
You must be signed in to change notification settings - Fork 32
48 lines (46 loc) · 1.12 KB
/
itest.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
name: Integration smoke test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
integration-smoke-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
svc:
- 'alpine-3.16-8'
- 'alpine-3.16-11'
- 'alpine-3.16-17'
- 'alpine-3.17-8'
- 'alpine-3.17-11'
- 'alpine-3.17-17'
- 'alpine-3.18-8'
- 'alpine-3.18-11'
- 'alpine-3.18-17'
- 'alpine-3.19-8'
- 'alpine-3.19-11'
- 'alpine-3.19-17'
- 'ubuntu-18.04-8'
- 'ubuntu-18.04-11'
- 'ubuntu-18.04-17'
- 'ubuntu-20.04-8'
- 'ubuntu-20.04-11'
- 'ubuntu-20.04-17'
- 'ubuntu-20.04-21'
- 'ubuntu-22.04-8'
- 'ubuntu-22.04-11'
- 'ubuntu-22.04-17'
- 'ubuntu-22.04-21'
steps:
- uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.23.1
- run: make itest
shell: bash
env:
ITEST_SERVICE: ${{ matrix.svc }}