We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29ac4fe commit ef953abCopy full SHA for ef953ab
.github/workflows/test.yml
@@ -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