Skip to content

Commit

Permalink
run integration tests (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashabaranov authored Jun 13, 2024
1 parent fd41f7a commit 7e96c71
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7e96c71

Please sign in to comment.