run integration tests (#769)

This commit is contained in:
Alex Baranov
2024-06-13 19:15:27 +04:00
committed by GitHub
parent fd41f7a5f4
commit 7e96c712cb

19
.github/workflows/integration-tests.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Integration tests
on:
push:
branches:
- master
jobs:
integration_tests:
name: Run integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run integration tests
run: go test -v -tags=integration ./api_integration_test.go