File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments