Skip to content

Commit

Permalink
Add integration tests to PR pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Chacin <[email protected]>
  • Loading branch information
pablochacin committed Aug 25, 2023
1 parent 3b5f9bf commit 181657c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ jobs:
- name: Run unit tests
run: go test -v -cover -race ./...

run-integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- name: Run integration tests
run: go test -tags integration -v -cover -race ./...

run-linter:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 181657c

Please sign in to comment.