Skip to content

Commit 6ade6de

Browse files
committed
test integration test workflow
1 parent ec2d7c3 commit 6ade6de

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Go - integration test
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- "!release"
7+
8+
concurrency:
9+
group: ${{ github.workflow }}
10+
cancel-in-progress: false
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
go-integration-test:
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
defaults:
20+
run:
21+
working-directory: diode-server
22+
steps:
23+
- name: Setup rootless Docker
24+
uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4
25+
with:
26+
rootless: true
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
- name: Setup Go
30+
uses: actions/setup-go@v5
31+
with:
32+
go-version: '1.23.x'
33+
check-latest: true
34+
- name: Run go test
35+
id: go-integration-test
36+
run: |
37+
make test-integration

0 commit comments

Comments
 (0)