Skip to content

Bump github.com/wagslane/go-rabbitmq from 0.14.2 to 0.15.0 (#70) #188

Bump github.com/wagslane/go-rabbitmq from 0.14.2 to 0.15.0 (#70)

Bump github.com/wagslane/go-rabbitmq from 0.14.2 to 0.15.0 (#70) #188

Workflow file for this run

name: "Test"
on:
push:
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
types: [ opened, synchronize ]
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
workflow_dispatch:
jobs:
# Run unit tests
tests:
name: "Run unit tests"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
- name: Install dependencies and run tests
run: |
go mod download
go test -v ./...