Skip to content

Commit 7e96c71

Browse files
authored
run integration tests (#769)
1 parent fd41f7a commit 7e96c71

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Integration tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
integration_tests:
10+
name: Run integration tests
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Setup Go
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version: '1.21'
18+
- name: Run integration tests
19+
run: go test -v -tags=integration ./api_integration_test.go

0 commit comments

Comments
 (0)