Skip to content

Commit cbd0cd0

Browse files
committed
test integration test workflow
1 parent ec2d7c3 commit cbd0cd0

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)