Skip to content

Commit

Permalink
fix(workflows): provide username/password in RABBITMQ_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
dmksnnk committed Aug 4, 2024
1 parent 7b668f4 commit 12957a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: docker run -d -p 5672:5672 rabbitmq:3.10.7-management

- name: Test
run: RABBITMQ_URL=amqp://localhost:5672 go test -race -v -count=1 ./...
run: RABBITMQ_URL=amqp://guest:guest@localhost:5672 go test -race -v -count=1 ./...

golangci:
name: lint
Expand All @@ -38,4 +38,4 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
version: v1.52.2

0 comments on commit 12957a3

Please sign in to comment.