Skip to content

Commit

Permalink
ci: change IntegrationTest to a single job
Browse files Browse the repository at this point in the history
  • Loading branch information
halalala222 committed Aug 4, 2024
1 parent 3a47ba8 commit 9818c85
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ jobs:
- name: Test
run: go list ./... | grep -v "./cmd/client" | xargs go test -v

IntegrationTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.18'

- name: Hash Structure Integration test
run: go test -v -a -tags hash_integration ./cmd/client/...

Expand All @@ -67,4 +76,4 @@ jobs:
run: go test -v -a -tags string_integration ./cmd/client/...

- name: ZSet Structure Integration test
run: go test -v -a -tags zset_integration ./cmd/client/...
run: go test -v -a -tags zset_integration ./cmd/client/...

0 comments on commit 9818c85

Please sign in to comment.