Skip to content

Commit 379120b

Browse files
committed
Merge remote-tracking branch 'upstream/release'
2 parents 5e8dd14 + 3712eed commit 379120b

40 files changed

+2608
-1495
lines changed

.github/workflows/test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Test
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
branches:
7+
- main
8+
paths-ignore:
9+
# - '.github/**'
10+
- '**.md'
11+
- 'proto/**'
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
env:
17+
CI: true
18+
DOCKER_BUILDKIT: 1
19+
20+
steps:
21+
- name: "Checkout"
22+
uses: actions/checkout@v3
23+
24+
- name: "Setup Docker Buildx"
25+
uses: docker/setup-buildx-action@v2
26+
27+
- name: "Build"
28+
run: make build
29+
30+
- name: "Build test-image"
31+
run: make build-test-image
32+
33+
- name: "Python tests"
34+
run: make python-tests
35+
36+
- name: "Integration tests"
37+
run: make integration-tests

0 commit comments

Comments
 (0)