fix: retry logic with dlx feature on rabbitmq #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Testing with RabbitMQ | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: ["oldstable", "stable"] | |
env: | |
VERBOSE: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: getong/[email protected] | |
with: | |
rabbitmq version: "3.13.3-management-alpine" | |
host port: 5672 | |
rabbitmq user: "test" | |
rabbitmq password: "test" | |
rabbitmq vhost: "test" | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Run tests | |
run: make integration-test-ci |