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 ec2d7c3 commit cbd0cd0Copy full SHA for cbd0cd0
.github/workflows/go-integration-test.yaml
@@ -0,0 +1,34 @@
1
+name: Go - integration test
2
+on:
3
+ workflow_dispatch:
4
+
5
+concurrency:
6
+ group: ${{ github.workflow }}
7
+ cancel-in-progress: false
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ go-integration-test:
14
+ runs-on: ubuntu-latest
15
+ timeout-minutes: 10
16
+ defaults:
17
+ run:
18
+ working-directory: diode-server
19
+ steps:
20
+ - name: Setup rootless Docker
21
+ uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4
22
+ with:
23
+ rootless: true
24
+ - name: Checkout
25
+ uses: actions/checkout@v4
26
+ - name: Setup Go
27
+ uses: actions/setup-go@v5
28
29
+ go-version: '1.23.x'
30
+ check-latest: true
31
+ - name: Run go test
32
+ id: go-integration-test
33
+ run: |
34
+ make test-integration
0 commit comments